当元素在文本周围插入然后被删除时,HTML 中的文本在 DOM 中会被分割/格式错误(但保留内部文本)

发布于 2024-12-15 14:22:06 字数 270 浏览 0 评论 0原文

所以,这是普通文本:只是您的标准段落。

Normal Text

我有 javascript,它将在选定文本周围插入一个跨度(用于突出显示目的)。 问题是,当我删除跨度时,漂亮的文本块变得粗短且格式错误:

在此处输入图像描述

如何做我将文本块恢复到原始状态吗?

So, here is normal text: just your standard paragraph.

Normal Text

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:

enter image description here

How do I restore the block of text to its original state?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

辞慾 2024-12-22 14:22:06

我认为你必须保留原始节点,并用你的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.

皓月长歌 2024-12-22 14:22:06

不要删除跨度,而是尝试用原始数据替换标准段落的内容。

Instead of removing the span, try replacing the content of the standard paragraph with its original data.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文