jQuery实现contains方法不区分大小写的方法教程

Posted PYTHON & ODOO

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery实现contains方法不区分大小写的方法教程相关的知识,希望对你有一定的参考价值。

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实现contains方法不区分大小写的方法教程的主要内容,如果未能解决你的问题,请参考以下文章

是否有不区分大小写的 jQuery :contains 选择器?

如何使 jQuery Contains 不区分大小写,包括 jQuery 1.8+?

不区分大小写的jQuery:包含选择器

不区分大小写包含jQuery选择器

是否有一个不区分大小写的jQuery:包含选择器?

jquery内容筛选