-2
如何刪除此內容或有其他方法?JavaScript正在製作刪除其左側的功能
a= function() {
this.delete= function() {
delete battle;
}
}
battle = new a();
battle.delete();
如何刪除此內容或有其他方法?JavaScript正在製作刪除其左側的功能
a= function() {
this.delete= function() {
delete battle;
}
}
battle = new a();
battle.delete();
function Foo(battle) {
this.battle=battle;
this.distroyBattle=function() {
this.battle=null;
}
}
'battle = undefined'? – evolutionxbox
我建議'this = undefined' – Rajesh
你根本不能刪除變量。 – Quentin