16
以下兩種方法有什麼區別嗎?比#2快#1?
#1
$('#selector').on('click',function(){
$(this)...
// do stuff with clicked element
})
and
#2
$('#selector').on('click',function(e){
$(e.currentTarget)....
// do stuff with clicked element
})
閱讀該文檔(http://api.jquery.com/ event.currentTarget /)應該給你答案。 – j08691
這個錯誤報告是相關的:http://bugs.jquery.com/ticket/11756。因爲他們認爲這是98%正在做的事情,所以正式使用'this'。 – Medorator