-1
我有一個非常簡單的函數,當我點擊某個圖像時,它由一個事件監聽器執行。'Immortal'div元素不會被移除
onExit() {
console.log(this.tag + " should get removed");
this.tag.remove();
console.log(this.tag + " should get removed");
}
這兩個消息都被寫入,並且this.tag不是未定義的,它肯定存在。
調試圖像
試圖this.remove()? –