小弟最近在練習jquery的fadeOut和remove
現在我在html檔中有一個ul:
<li class="todoItem"><span class="delete"> x </span>bla</li>
我希望的功能是點了x之後list item會消失
所以我寫的jquery如下:
$(".delete").click(e =>
$(e.target)
.parent().fadeOut(150, e => $(e.target).remove())
)
執行後有達到我預期的效果,
但看console會得到以下訊息:
TodoList.js:9 Uncaught TypeError: Cannot read property 'target' of undefined
at HTMLLIElement.$.parent.fadeOut.e (TodoList.js:9)
at HTMLLIElement.opt.complete (jquery-3.2.1.js:7236)
at fire (jquery-3.2.1.js:3317)
at Object.fireWith [as resolveWith] (jquery-3.2.1.js:3447)
at tick (jquery-3.2.1.js:7079)
at Function.jQuery.fx.tick (jquery-3.2.1.js:7405)
at schedule (jquery-3.2.1.js:6783)
但我如果改寫把上面的程式碼稍微改寫:
$(".delete").click(e =>
$(e.target)
.parent().fadeOut(150, function(){$(this).remove()})
)
那程式運行OK也不會出現上述的error訊息
我以為e.target跟this應該是一樣的?
所以我不知道為什麼會有這個差異。
想請問一下我的理解哪裡有問題?