jquery $(this)的疑问
1 回答
qq_遁去的一_1
TA贡献1725条经验 获得超7个赞
$(function(){
$('button').click(function(){
//$(this)表示当前对象,在这里指的是button按钮
$(this).closest('tr').remove();
//或者:
$(this).parent().parent().remove();
//或者:
$(this).parents('tr').remove();
})
})
- 1 回答
- 0 关注
- 568 浏览
添加回答
举报
0/150
提交
取消