Remove Styles from Text when Copying / Cutting using CSS or Javascript(使用 CSS 或 Javascript 复制/剪切时从文本中删除样式)
问题描述
哟,
好吧,一直在研究这个:如何在不带任何样式包袱(背景颜色、颜色等)的情况下复制/剪切样式文本?
Alright been noodling on this one for a while: How copy/cut styled text without bringing along any style baggage (background-color, color, etc)?
已被挫败的几条攻击路线:
Couple of routes of attacks that have been foiled:
- 使用 ::select 为文本设置不同的样式? 不起作用, ::style 没有被复制
- 使用 jQuery 的选择绑定设置所选文本的样式 这仅适用于输入,而不适用于 p、div
- 通过使用 jQuery 将事件绑定到复制/粘贴来拦截和删除样式? 无法访问复制的对象以删除内容,尝试使用 e.preventDefault();然后返回事件对象,但这也不起作用
- 保存后修改剪贴板数据? 同样没有骰子,大多数浏览器不会让你在没有 Flash 和某种确认的情况下进入这个
无论如何,想法?似乎它对于具有白色背景颜色的网站非常有用.
Anyway, thoughts? Seems like it would be very useful for sites that have white background colors.
推荐答案
我现在没有时间编写示例,但是您可以为键盘快捷键触发的剪切/复制执行此操作.它不适用于通过上下文菜单或编辑菜单选项进行剪切/复制,因为它依赖于在剪切或复制事件触发之前更改用户选择.
I haven't got time to code up an example now, but you could do this for cut/copy triggered by keyboard shortcuts. It wouldn't work for cut/copy via context menu or Edit menu options because it relies on changing the user selection before the cut or copy event fires.
步骤:
- 处理 Ctrl-C 和 Ctrl-X 键盘快捷键和 Mac 等效项.
- 在此处理程序中,创建一个离屏元素(例如,绝对位置和左侧 -10000 像素)并将所选内容复制到其中.您可以使用
window.getSelection().getRangeAt(0).cloneContents()
来执行此操作,尽管您需要单独的 IE 代码 <9 并且您应该检查选择是否折叠. - 随心所欲地更改屏幕外元素内容的样式.
- 移动选择以包含屏幕外元素的内容,以便剪切或复制此内容.
- 使用
window.setTimeout()
添加一个短暂的延迟(几毫秒),该延迟会调用一个删除屏幕外元素并恢复原始选择的函数.
- Handle the Ctrl-C and Ctrl-X keyboard shortcuts and the Mac equivalents.
- In this handler, create an off-screen element (absolute position and left -10000px, say) and copy the selected content into it. You can do this using
window.getSelection().getRangeAt(0).cloneContents()
, although you'll need separate code for IE < 9 and you should check the selection is not collapsed. - Do whatever you like to to change the styling of the content of the off-screen element.
- Move the selection to encompass the content of the off-screen element so that it is this content that is cut or copied.
- Add a brief delay (a few milliseconds) using to
window.setTimeout()
that calls a function that removes the offscreen element and restores the original selection.
这篇关于使用 CSS 或 Javascript 复制/剪切时从文本中删除样式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 CSS 或 Javascript 复制/剪切时从文本中删除样式
基础教程推荐
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 直接将值设置为滑块 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01