gpt4 book ai didi

javascript - 删除 标签,同时保留内容完好无损,仅使用 javascript

转载 作者:行者123 更新时间:2023-11-30 08:12:52 25 4
gpt4 key购买 nike

我在页面突出显示中做了一些,发现使用文本选择和添加跨度时最流行的示例是切换到 designMode 并运行 execCommand

How can I highlight the text of the DOM Range object?

但是没有关于如何在创建后删除 span 标签的后续行动。我看到了一些使用 jquery 和 replaceWith 的例子,但没有一个是直接使用 javascript 的。

最佳答案

您应该能够执行以下操作:

// Where span is a reference to the span to be replaced
var text = span.textContent || span.innerText;
var node = document.createTextNode(text);
span.parentNode.replaceChild(node, span);

关于javascript - 删除 <span> 标签,同时保留内容完好无损,仅使用 javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7947763/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com