"contains"の大文字小文字を区別せずに使用しようとしています。次のstackoverflowの質問で解決策を試してみましたが、うまくいきませんでした:
大文字と小文字を区別しないjQuery:containsセレクターはありますか?
便宜上、ソリューションはここにコピーされます。
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