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