首页 > 代码库 > 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 www.jbxue.com</a> 

filter的参数类型可分为两种: 


1 传递选择器 

2 传递过滤函数 

如果使用选择器作为参数,用法如下 
$(‘a‘).filter(‘.external‘) 

使用匿名过滤函数 
$(‘a‘).filter(function(index) { 
return $(this).hasClass(‘external‘); 
}) 

参数index是结果集的下标.