jQuery操作數組主要有兩種方式: 普通數組 $.each(array,function(k,v){ //... }); 關聯數組,{"id":10,"name":"tom"} 索引數組,[1,2,3,4,5,6,7,8,9] k:如果是關聯是鍵名,如果是索引是下標(從0開始; vo:是元素值; ...
jQuery操作數組主要有兩種方式:
普通數組
$.each(array,function(k,v){
//...
});
- 關聯數組,{"id":10,"name":"tom"}
- 索引數組,[1,2,3,4,5,6,7,8,9]
k:如果是關聯是鍵名,如果是索引是下標(從0開始;
vo:是元素值;
對象數組
$("p").each(function(k,v){
//...
})
i 是數組元素的下標數字,索引下標
v 是dom中的節點[子對象]
其中
v = this = '<p>...</p>'
//字元串
$(v) = $(this) = init... //dom節點對象