我知道这已经被问过好几次了,但它对我不起作用。我有这个:
$("td:contains('Hello')").html("Hi");
$("td:contains('Hello World')").html("Bye");
我已经这样做了:
$("td:contains('Hello')").filter(function() {
return $(this).text() == "Hi";
});
但两者都来了“嗨”。我只希望将具有确切字符串“Hello”的表数据替换为“Hi”。“Hello World”应该替换为“Bye”,但事实并非如此。有人可以帮忙吗?