首页 > 代码库 > jQuery filter函数使用方法
jQuery filter函数使用方法
利用filter函数可以从wrapper set中过滤符合条件的DOM元素。
如果有一个内容如下的html文件,要获取类为external的<a>元素,使用filter可以很easy地搞定。
1 传递选择器
2 传递过滤函数
如果使用选择器作为参数,用法如下
使用匿名过滤函数
参数index是结果集的下标.
<a href="http://www.mamicode.com/#" class="external">link</a> <a href="http://www.mamicode.com/#" class="external">link</a> <a href="http://www.mamicode.com/#">link</a> <a href="http://www.mamicode.com/#" class="external">link</a> <a href="http://www.mamicode.com/#" class="external">link</a> <a href="http://www.mamicode.com/#"></a> <a href="http://www.mamicode.com/#">link</a> <a href="http://www.mamicode.com/#">link</a> <a href="http://www.mamicode.com/#">link</a> <a href="http://www.mamicode.com/#">link www.jbxue.com</a>
filter的参数类型可分为两种:
1 传递选择器
2 传递过滤函数
如果使用选择器作为参数,用法如下
$(‘a‘).filter(‘.external‘)
使用匿名过滤函数
$(‘a‘).filter(function(index) {
return $(this).hasClass(‘external‘);
})
})
参数index是结果集的下标.
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。