为什么我不能将Javascript函数切换为箭头?

时间:2020-04-12 11:20:40

标签: javascript jquery arrow-functions

这正在工作

$(".remove").on('click', removeTr);

function removeTr(){
    $(this).closest("tr").remove();
}

但是当我将其切换为数组函数时,它不起作用

$(".remove").on('click', () => {
    $(this).closest("tr").remove();
})

有人可以向我解释为什么这会发生在我身上吗?

0 个答案:

没有答案