码迷,mamicode.com
首页 > 编程语言 > 详细

js遍历数组对象和非数组对象

时间:2016-12-02 21:24:48      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:class   style   console   bsp   --   for   对象   code   var   

//---------for用来遍历数组对象
    var i,myArr = ["a","b","c"];
    for (var i = 0; i < myArr.length; i++) {
        console.log(i+":"+myArr[i]);
    };
    //---------for-in 用来遍历非数组对象
方法一、
var man ={"1":"a","2":"b","3":"c"}; for(var i in man) { console.log(i,":",man[i]); }
方法二、
  var man ={"1":"a","2":"b","3":"c"};
  $.each(man, function(i){
    console.log(i,":",man[i]);
  });

 

js遍历数组对象和非数组对象

标签:class   style   console   bsp   --   for   对象   code   var   

原文地址:http://www.cnblogs.com/liujiaq/p/6126948.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!