jQuery源码分析之jQuery.fn.each与jQuery.each用法
本文实例讲述了jQuery源码分析之jQuery.fn.each与jQuery.each用法。分享给大家供大家参考。具体分析如下:
先上例子,下面代码的作用是:对每个选中的div元素,都给它们添加一个red类
$('div').each(function(index,elem){
$(this).addClass('red');
}
});
上面用的的.each,即jQuery.fn.each,其内部是通过jQuery.each实现的
jQuery.fn.each
先贴一下类官方API说明,非常简单,只有两点需要注意
上文例子里的$(this).addClass('red'),其中,this指的是当前操作的dom元素
each中传入的方法,可以返回任意值,当返回的值为false时,跳出当前循环操作
/**
*@description对jQuery对象中,匹配的的每个dom元素执行一个方法
*@param{Number}index当前处理元素在集合中的位置
*@param{DOMElement}Element当前处理的dom元素
*/
.
.each(function(index,Element))下面举两个简单的例子
例子一:
给页面所有的div元素添加red类
$('div').each(function(index,elem){
$(this).addClass('red');
}
});例子二
给页面前5个div元素添加red类
$('div').each(function(index,elem){
if(index>=5)returnfalse; //跳出循环
$(this).addClass('red');
}
});如上,用法挺简单,不赘述,详细可查看http://api.jquery.com/each/
源码内部是通过jQuery.each实现的,下面就讲下jQuery.each的源码,讲完jQuery.each的源码,jQuery.fn.each的源码就很简单了
jQuery.each:
同样是先上一个简单的例子
$.each([52,97],function(index,value){
alert(index+':'+value+':'+this);
}
});输出内容如下:
0:52-52
1
1:97-97
类官方API说明
同样是有两个注意点
上面例子中的this,是集合中的元素,即下面的valueOfElement
在callback中返回false,可以跳出循环
/**
*@description对集合(数组或对象)中的每个元素,执行某个操作
*@param{Number|String}indexInArray元素在集合中对应的位置(如集合为数组,则为数字;如集合为对象,则为键值)
*@param{AnyValue}valueOfElement集合中的元素
*/
j
jQuery.each(collection,callback(indexInArray,valueOfElement))例子一
$.each(['one,'two','three','four'],function(index,value){
if(index>=2)returnfalse;
alert("Index:"+index+",value:"+value);
}
});例子二
从官网直接copy来的例子,凑合着看
$.each({name:"John",lang:"JS"},function(k,v){
alert("Key:"+k+",Value:"+v);
}
});源码:
//argsisforinternalusageonly
e
each:function(obj,callback,args){
varvalue,
i=0,
length=obj.length,
isArray=isArraylike(obj); //obj是不是类似数组的对象,比如{'0':'hello','1':'world','length':2},其实就是为jQuery对象服务啦
if(args){ //args,其实没发现这个参数有什么实际作用~~直接跳过看else里面的内容即可,除了callback传的参数不同外无其他区别
if(isArray){
for(;i<length;i++){
value=callback.apply(obj[i],args);
if(value===false){
break;
}
}
}else{
for(iinobj){
value=callback.apply(obj[i],args);
if(value===false){
break;
}
}
}
//Aspecial,fast,caseforthemostcommonuseofeach
}else{
if(isArray){ //处理数组
for(;i<length;i++){
value=callback.call(obj[i],i,obj[i]);
if(value===false){
break;
}
}
}else{ //处理对象
for(iinobj){
value=callback.call(obj[i],i,obj[i]);//value为callback的返回值
if(value===false){ //注意这里,当value===false的时候,直接跳出循环了
break;
}
}
}
}
returnobj;
}
},迟到的jQuery.fn.each源码:
的确很简单,只要理解了jQuery.each应该就没问题了,没什么好讲的~
each:function(callback,args){
returnjQuery.each(this,callback,args);
}
},结束语
与jQuery.extend、jQuery.fn.extend一样,虽然jQuery.each、jQuery.fn.each代码很简单,但也扮演了相当重要的作用,jQuery里大量用到了这两个方法,举例:
jQuery.each("BooleanNumberStringFunctionArrayDateRegExpObjectError".split(""),function(i,name){
class2type["[object"+name+"]"]=name.toLowerCase();
}
});所以,好好掌握each!
希望本文所述对大家的jQuery程序设计有所帮助。