1
是否有任何函數讓我們知道一個組是否有孩子? 因爲如果我嘗試像組中的Mygroup.getChildren()有孩子我會得到錯誤。 感謝的如何檢查組是否有孩子或不在Kineticjs
是否有任何函數讓我們知道一個組是否有孩子? 因爲如果我嘗試像組中的Mygroup.getChildren()有孩子我會得到錯誤。 感謝的如何檢查組是否有孩子或不在Kineticjs
請選中該小提琴
if(group.getChildren().length==0)
{
alert("group doesn't has children");
}
else
{
//do ur stuff
}
if($(Mygroup).children().length==0)
{
alert("group doesn't has children");
}
else
{
//do your stuff
}
Mygroup.getChildren()看起來是正確的和類似的代碼工作對我來說,即使該組沒有孩子。你遇到了什麼錯誤?你能舉一個有問題的代碼的例子嗎? – markE 2013-03-25 04:15:04