if (document.getElementById("td1").innerHTML == "word"){
$("td:first").html("another word");
}
我只是想检查一下是否有这个文字。
答案 0 :(得分:3)
你的意思是
if($('#td1').text() === "word"){
$("td:first").html("another word");
}
匹配<div id=td1>word</div>
答案 1 :(得分:1)
$("#td1:contains('word')").html("another word");