摘要: 【from:】http://hi.baidu.com/slandi/blog/item/98b14442f2fc77059313c6c9.html方式一,length赋值为0这种方式很有意思,其它语言如Java,其数组的length是只读的,不能被赋值。如int[]ary={1,2,3,4};ary.length=0;Java中会报错,编译通不过。而JS中则可以,且将数组清空了,如varary=[1,2,3,4];ary.length=0;console.log(ary);//输出[],空数组,即被清空了目前 Prototype中数组的clear方法和mootools库中数组的empty方法使 阅读全文
posted @ 2011-06-02 11:50 Unintended 阅读(366) 评论(0) 推荐(0) 编辑