gpt4 book ai didi

jquery - 如何替换 HTML 标记的文本

转载 作者:搜寻专家 更新时间:2023-10-31 22:49:02 27 4
gpt4 key购买 nike

我不知道怎么调用它,但让我称它为半内部文本。

例子

<div id='myDiv'>
This is the semi-inner text
<div id='other'></div>
This is the semi-inner text
<div>

我想使用 jquery 删除/替换那些 This is the semi-inner text

我该怎么做?

最佳答案

如果你只关心子节点...

$('#myDiv').contents().filter(function() {
return this.nodeType == 3
}).each(function() {
this.data = this.data.replace(/This is the semi-inner text/g, 'swapped');
});​

jsFiddle .

如果要检查所有后代节点,使函数在检测到元素节点时递归(this.nodeType == 1)。

关于jquery - 如何替换 HTML 标记的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10427186/

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