ฉันกำลังพยายามใช้ตัวพิมพ์ "มี" อย่างไม่ใส่ใจ ฉันลองใช้วิธีแก้ปัญหาที่คำถาม stackoverflow ต่อไปนี้ แต่ไม่ได้ผล:
มี jQuery ที่ไม่คำนึงถึงตัวพิมพ์เล็กและใหญ่: มีตัวเลือกหรือไม่
เพื่อความสะดวกระบบจะคัดลอกโซลูชันที่นี่:
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