2013年3月13日
摘要: Array类可以如下定义: var aValues = new Array(); 如果预先知道数组的长度,可以用参数传递长度 var aValues = new Array(20); ------------------如下2种定义方式是一样的--------1----------- var aColors = new Array(); aColors[0] = "red"; aColors[1] = "green"; aColors[2] = "blue"; alert(aColors[0]); // output "re 阅读全文
posted @ 2013-03-13 17:30 刀魂 阅读(157461) 评论(0) 推荐(1) 编辑