当 html 中存在某些措辞时,我想进行操作以删除最近的表。
我不能假设 span 类会存在那里,因为 html 是从另一端检索的,他们可以随时通过添加、删除任何类来更改它。
它需要在页面加载时完成,而不是在点击里面的 class/id 事件时完成。
有点挑战性。知道如何实现这一目标吗?
在页面加载时,
jquery 来检测页面中是否存在“你好,你好吗”。
If exist
remove the whole td or tr or table for this particular.
else
do nothing.
end
代码如下:
function replaceText()
{
var debug;
debug= "";
$("*").each(function() {
if($(this).children().length==0)
{
// $(this).text($(this).text().replace('Hello how are you', 'yohoo'));
debug= debug + $(this).val() + "<br>";
if($(this).val()=="Hello how are you")
{
$(this).closest('table').remove();
}
}
});
//alert(debug);
}
<div>
<table>
<tr>
<td colspan="2">
<div>
<table>
<tr>
<td ><span class="myclass">Hello how are you</span></td>
<td><a href="testing.php"></a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr colspan="2">
<table>
<tr>
<td><b>want to remove this</b></td>
</tr>
</table>
</tr>
<tr>
<td>other content 1</td>
<td>other content 2</td>
</tr>
</table>
</div>