标签: javascript jquery arrow-functions
这正在工作
$(".remove").on('click', removeTr); function removeTr(){ $(this).closest("tr").remove(); }
但是当我将其切换为数组函数时,它不起作用
$(".remove").on('click', () => { $(this).closest("tr").remove(); })
有人可以向我解释为什么这会发生在我身上吗?