jQuery filter函数使用方法

2020-12-13 05:29

阅读:369

标签:style   class   blog   c   code   java   

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

如果有一个内容如下的html文件,要获取类为external的元素,使用filter可以很easy地搞定。 
soscw.com,搜素材
link 
link 
link 
link 
link 
 
link 
link 
link 
link www.jbxue.com 
soscw.com,搜素材

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


1 传递选择器 

2 传递过滤函数 

如果使用选择器作为参数,用法如下 

$(‘a‘).filter(‘.external‘) 

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

参数index是结果集的下标.

jQuery filter函数使用方法,搜素材,soscw.com

jQuery filter函数使用方法

标签:style   class   blog   c   code   java   

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


评论


亲,登录后才可以留言!