最佳答案
我只是不经意地用了“包含”这个词。我尝试在下面的堆栈溢出问题中使用这个解决方案,但是没有用:
是否存在不区分大小写的 jQuery: include 选择器?
为了方便起见,这里复制了解决方案:
jQuery.extend(
jQuery.expr[':'], {
Contains : "jQuery(a).text().toUpperCase().indexOf(m[3].toUpperCase())>=0"
});
这里有一个错误:
Error: q is not a function
Source File: /js/jquery-1.4.js?ver=1.4
Line: 81
以下是我使用它的地方:
$('input.preset').keyup(function() {
$(this).next().find("li").removeClass("bold");
var theMatch = $(this).val();
if (theMatch.length > 1){
theMatch = "li:Contains('" + theMatch + "')";
$(this).next().find(theMatch).addClass("bold");
}
});
我在同一场景中使用的原始区分大小写的“包含”没有任何错误。有人知道吗?我会很感激的。