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

JS循环数组几种方式

时间:2017-09-15 13:35:26      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:while   length   logs   script   ext   highlight   push   foreach   val   

  data1 = [];
                data1.push({ value: "", text: "请选择" });
                json.data.result.forEach(function (e) {
                    data1.push(e);
                });
                var index=0;
                while (index < json.data.result.length) {
                    data1.push(json.data.result[index++]);
                }
                var index = 0;
                do{
                    data1.push(json.data.result[index++])
                } while (index < json.data.result.length)

  

JS循环数组几种方式

标签:while   length   logs   script   ext   highlight   push   foreach   val   

原文地址:http://www.cnblogs.com/chenglideyueguang/p/7525575.html

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