대소 문자를 구분하지 않고 "포함"을 사용하려고합니다. 다음 stackoverflow 질문에서 솔루션을 사용해 보았지만 작동하지 않았습니다.
대소 문자를 구분하지 않는 jQuery : contains selector가 있습니까?
편의를 위해 솔루션이 여기에 복사됩니다.
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");
}
});
동일한 시나리오에서 원래 대소 문자 구분 "포함"을 사용하면 오류없이 작동합니다. 누구에게 아이디어가 있습니까? 감사합니다.
:containsExact
,:containsExactCase
그리고:containsRegex
jQuery를의 모든 버전에서 현재 작업에 선택기.