Remove formatting from a contentEditable div(从 contentEditable div 中删除格式)
问题描述
我有一个 contentEditable Div,我想删除任何格式,尤其是复制和粘贴文本.
I have a contentEditable Div and I want remove any formatting especially for copy and paste text.
推荐答案
你试过使用innerText吗?
Have you tried using innerText?
添加:
如果您想从粘贴到可编辑 div 的内容中去除标记,请尝试创建临时 div 的旧技巧 - 请参见下面的示例.
If you want to strip markup from content pasted into the editable div, try the old hack of creating a temporary div -- see example below.
这篇关于从 contentEditable div 中删除格式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!