gpt4 book ai didi

jquery - 删除其中包含特定关键字的 div

转载 作者:行者123 更新时间:2023-12-01 07:31:05 25 4
gpt4 key购买 nike

鉴于此 html,

<div id="knownParent">
<div> <!-- This is the div to delete -->
<a>a link</a>
<span>the <b>keyword</b> is here somewhere and it is not repeated</span>
<p>what I want is to delete the div containing this keyword</p>
</div>
<div id="knownNext"></div>
</div

我需要删除 div“divToDelete”。我总是知道它的父 div 和它的下一个兄弟 div 是什么,并且我可以通过 div 内容中的某些关键字来确定 div。

使用 jquery,hoq 我会这样做吗?

最佳答案

使用:contains() :

var keyword = 'keyword';
$('#knownParent').find('div:contains(' + keyword + ')').remove();

演示:http://jsfiddle.net/mattball/h6E7W/

关于jquery - 删除其中包含特定关键字的 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6073269/

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