当元素在文本周围插入然后被删除时,HTML 中的文本在 DOM 中会被分割/格式错误(但保留内部文本)
所以,这是普通文本:只是您的标准段落。
我有 javascript,它将在选定文本周围插入一个跨度(用于突出显示目的)。 问题是,当我删除跨度时,漂亮的文本块变得粗短且格式错误:
如何做我将文本块恢复到原始状态吗?
So, here is normal text: just your standard paragraph.
I have javascript that will insert a span around selected text (for highlighting purposes).
The problem is that when I remove the span, the nice text block becomes chunky, and malformed:
How do I restore the block of text to its original state?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为你必须保留原始节点,并用你的span-wrapper 克隆innerHTML 来替换它。然后只需更换节点即可。
I think you must to keep the original node, and replace it cloning the innerHTML with your span-wraper. Then just replace the nodes.
不要删除跨度,而是尝试用原始数据替换标准段落的内容。
Instead of removing the span, try replacing the content of the standard paragraph with its original data.