默认情况下,它是这样的:
$.fn.ellipsis = function() {
...
return this.each(function(){
//do some operation on each element here to see if it qualifies
}
}
但是现在我想要返回所有的子集,只有那些符合this.each(function() {})
,
如何修改代码,使其最终只返回符合条件的代码?
答案 0 :(得分:2)
查看jQuery的过滤器功能:http://api.jquery.com/filter/
答案 1 :(得分:0)