你怎么能删除这个或者有其他方法吗?
a= function() {
this.delete= function() {
delete battle;
}
}
battle = new a();
battle.delete();
答案 0 :(得分:0)
function Foo(battle) {
this.battle=battle;
this.distroyBattle=function() {
this.battle=null;
}
}