标签:结果 comment alt string json key console 注意 ber
一般情况
$(
"要遍历的dom元素 数组"
).each(
function
(index,data){
})
二般情况
$.each( [3,4,5],
function
(i, n){
console.info(
"Index:"
+ i +
": "
+ n );
});
Index:0: 3
Index:1: 4
Index:2: 5
要注意的是 each方法可以遍历数组 对象 dom元素
要分两种情况,情况1:数组,则第一个参数是下从标,第二个参数是下坐标对应的数据对象;
情况2:json数据,第一个参数是key键,第二个参数是key对应的值。
标签:结果 comment alt string json key console 注意 ber
原文地址:http://www.cnblogs.com/C-dashazi/p/6846126.html