标签: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)
标签:while length logs script ext highlight push foreach val
原文地址:http://www.cnblogs.com/chenglideyueguang/p/7525575.html