在AS3中,您将如何删除已在对象上设置的所有属性

时间:2012-03-01 01:01:31

标签: actionscript-3 flash

有谁知道如何删除在AS3中的静态对象上设置的属性?

理想情况下,它会像 -

foreach(property in GlobalStaticVar.properties) {
    GlobalStaticVar.removeProperty(property);
}

是否有人有任何提示可供查看。

对不起,我有点像一个闪光菜鸟。

感谢您的时间。

1 个答案:

答案 0 :(得分:5)

尝试:

for (var p:String in GlobalStaticVar) {
    delete GlobalStaticVar[p];
}