gpt4 book ai didi

jquery - 替换内容中的文本

转载 作者:太空宇宙 更新时间:2023-11-04 04:48:58 27 4
gpt4 key购买 nike

我尝试替换 em 中的内容。但它不起作用。代码在这里

 <p>
<em>
<a href='/'>not</a>
yes
yes
yes
</em>
</p>

这里的输出是 not yes yes yes
在这里,我想删除文本 yes 并且我只需要将文本输出为 not
我该怎么做。我正在等待您宝贵的答复。谢谢你的建议

最佳答案

如果你想删除所有的yes,你可以这样做:

$(function(){
$('em').each(function(){
$(this).html($(this).html().replace(/yes/g, ''));
});
});

Demonstration

如果你想删除所有文本节点,你可以这样做:

$('em').contents().filter(function() {
return this.nodeType == 3;
}).remove();​

关于jquery - 替换内容中的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13879978/

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