码迷,mamicode.com
首页 > Web开发 > 详细

jQuery filter函数使用方法

时间:2014-05-23 12:21:34      阅读:450      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   c   code   java   

利用filter函数可以从wrapper set中过滤符合条件的DOM元素。 

如果有一个内容如下的html文件,要获取类为external的<a>元素,使用filter可以很easy地搞定。 
bubuko.com,布布扣
<a href="#" class="external">link</a> 
<a href="#" class="external">link</a> 
<a href="#">link</a> 
<a href="#" class="external">link</a> 
<a href="#" class="external">link</a> 
<a href="#"></a> 
<a href="#">link</a> 
<a href="#">link</a> 
<a href="#">link</a> 
<a href="#">link www.jbxue.com</a> 
bubuko.com,布布扣

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


1 传递选择器 

2 传递过滤函数 

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

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

参数index是结果集的下标.

jQuery filter函数使用方法,布布扣,bubuko.com

jQuery filter函数使用方法

标签:style   class   blog   c   code   java   

原文地址:http://www.cnblogs.com/yes123/p/3737215.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!