2016-12-21 51 views
-1

我有一個非常簡單的函數,當我點擊某個圖像時,它由一個事件監聽器執行。'Immortal'div元素不會被移除

onExit() { 
    console.log(this.tag + " should get removed"); 
    this.tag.remove(); 
    console.log(this.tag + " should get removed"); 
} 

這兩個消息都被寫入,並且this.tag不是未定義的,它肯定存在。

調試圖像

enter image description here

+0

試圖this.remove()? –

回答

0

可以調用parent元素刪除child元素,像這樣

var parent = this.parentElement; 
parent.remove(this);