大家好我有这个HTML:
<html>
<body>
<div>
<h3>Text 1</h3>
<div>Other Text</div>
<h2>Hi my name is John</h2>
</div>
</body>
</html>
我想找到包含'Text'关键字的元素。我已经尝试过使用这个jQuery句子:
jQuery("*:contains('Text')")
问题是这句话从<html>
返回所有html层次结构直到<h3>
,我只希望包含Text关键字的最后一个元素做一些替换。
我该怎么办?
更新:
解决方案是在这篇文章