标签:style blog color for ar div log c
for...in 循环主要用于数组,也可用于对象。
for (var index in myArray) { document.write(myArray[index]); }
var person = { firstname : "Bill", lastname : "Gates", age : 56, } for (var index in person) { document.write(person[index]); }
标签:style blog color for ar div log c
原文地址:http://www.cnblogs.com/otfngo/p/3888817.html