遍歷(一)jquery $().each和$.each()

在jquery中,遍歷對象和數組,常常會用到$().each和$.each(),兩個方法。php

$().each 在dom處理上面用的較多。若是頁面有多個input標籤類型爲checkbox,對於這時用$().each來處理多個checkbook,例如:jquery

$(「input[name=’ch’]」).each(function(i){
if($(this).attr(‘checked’)==true)
{
//一些操做代碼
}
回調函數是能夠傳遞參數,i就爲遍歷的索引。

 

遍歷一個數組一般用$.each()來處理  例如:數組

複製代碼

 

$.each([{name:"limeng",email:"xfjylimeng"},{name:"hehe",email:"xfjylimeng"}],function(i,n)
{
alert("索引:"+i+"對應值爲:"+n.name);
});dom

參數i爲遍歷索引值,n爲當前的遍歷對象.函數

var arr1 = [ "one", "two", "three", "four", "five" ];
$.each(arr1, function(){
alert(this);
});
輸出:one   two  three  four   five

var arr2 = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
$.each(arr2, function(i, item){
alert(item[0]);
});
輸出:1   4   7

var obj = { one:1, two:2, three:3, four:4, five:5 };
$.each(obj, function(key, val) {
alert(obj[key]);
});
輸出:1   2  3  4  5

 

 

更多php技術交流,可加Q羣:884743303,裏面各路大神爲您保駕護航,this

相關文章
相關標籤/搜索