html部分
<ul>
<li><b>hi</b></li>
</ul>
js part
if($("b").contains("hi")) {
alert('hi');
}
以上代码在js小提琴中对我不起作用。我找不到我做错了什么。
答案 0 :(得分:4)
if ( $("b:contains('hi')").length ) {
alert('hi');
}
或
if ( $('b').filter(function() {
return $(this).text().indexOf('hi') != -1;
}).length
) {
alert('hi');
}