本文介绍了是JavaScript的array.clear()不是一个函数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想空数组包含我的绘制坐标当按钮清除是pressed。
I'm trying to empty an array containing my drawn coordinates when a button "clear" is pressed.
当我打电话drawnDivs.clear(),我得到一个错误,这是不是一个函数。 drawnDivs肯定是一个数组,我有 console.logs印刷的东西出来。它在这里举办 。
When I call drawnDivs.clear(), I get an error that it is not a function. drawnDivs is certainly an array, and I have Firebug console.logs printing things out. It's hosted here.
推荐答案
不,不是这样的。但 drawnDivs.length = 0
应该工作。
Nope, it's not. But drawnDivs.length = 0
should work.
这篇关于是JavaScript的array.clear()不是一个函数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!