本文共 1169 字,大约阅读时间需要 3 分钟。
var arr = ['zxx', 18, 'smart', 'good'];for(var i = 0, len = arr.length; i < len; i++){ console.log(i + '. ' + arr[i]);}// 0. zxx// 1. 18// 2. smart// 3. good
var arr = ['zxx', 18, 'smart', 'good'];arr.forEach(function(item,index,arr){ console.log(item); console.log(index); console.log(arr);});// zxx// 0// ["zxx", 18, "smart", "good"]// 18// 1// ["zxx", 18, "smart", "good"]// smart// 2// ["zxx", 18, "smart", "good"]// good// 3// ["zxx", 18, "smart", "good"]
jquery下的each方法有两种,一种为$('').each(),jquery对象方法,用于循环遍历jquery对象。一种为$.each()循环方法,用于循环遍历数组、对象。
第一种:$('').each()
第二种:$.each()
var arr = ['nick','freddy','mike','james'];var userMsg = { nick: { name: 'nick', age: 18, sex: '男' }, freddy: { name: 'freddy', age: 24, sex: '男' } };$.each(arr,function(index,item){ console.log(index+'. '+item);});console.log('-----------分割线-----------');$.each(userMsg,function(key1,item1){ console.log(key1); $.each(item1,function(key2,item2){ console.log(key2 + ': ' + item2); });});