我有以下代码搜索包含文本hello
。
var found = $('span.ui-dialog-title:contains("hello")');
我需要相同类型的语句,但对话框标题必须正好hello
。类似的东西:
var found = $('span.ui-dialog-title:equals("hello")');
不幸的是equals
不起作用。
答案 0 :(得分:3)
没有equals
选择器。您需要使用.filter()
函数。
$('span.ui-dialog-title').filter(function(){
return $(this).text() === "hello";
});