首页 > 编程 > JavaScript > 正文

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

2019-11-20 13:09:37
字体:
来源:转载
供稿:网友

本文实例讲述了jQuery实现contains方法不区分大小写的方法。分享给大家供大家参考。具体实现方法如下:

// NEW selector  jQuery.expr[':'].Contains = function(a, i, m){ return jQuery(a).text().toUpperCase()   .indexOf(m[3].toUpperCase()) >= 0;};   // OVERWRITES old selecorjQuery.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程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表