JavaScript的array.clear()不是函数吗?
这个问题在这里已经有了答案:
不,不是的。 但是drawnDivs.length = 0
应该可以工作。
drawnDivs = [];
它在Stack Overflow问题中得到了解答我如何在JavaScript中清空数组?
答案的两个例子:
var A = ['some', 'values', 'here'];
//Method 1
//(This was my original answer to the question)
A = [];
// Method 2 (as suggested by Matthew Crumley)
A.length = 0
Axel Rauschmayer博士对这两种方法进行了详细的介绍。
链接地址: http://www.djcxy.com/p/23939.html