이 기사의 예에서는 jQuery가 대소문자를 구분하지 않도록 포함 메소드를 구현하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 구현 방법은 다음과 같습니다.
// NEW selector jQuery.expr[':'].Contains = function(a, i, m){ return jQuery(a).text().toUpperCase() .indexOf(m[3].toUpperCase()) >= 0; }; // OVERWRITES old selecor jQuery.expr[':'].contains = function(a, i, m){ return jQuery(a).text().toUpperCase() .indexOf(m[3].toUpperCase()) >= 0; };
사용법:
$("div:contains('John')")
테스트 HTML 파일:
<div>john</div> <div>John</div> <div>hey hey JOHN hey hey</div>
이 기사가 모든 사람의 jQuery 프로그래밍에 도움이 되기를 바랍니다.