比如<tr><td><input type='button' oncilck='ckick_func()'/></td><tr>那我在ckick_func()中获取的 $(this)是什么,是这个按钮么如果是 那我 $(this).parent().parent().remove()又删除不了这一行$(this)获取的是什么 我是新手
2 回答
繁星淼淼
TA贡献1775条经验 获得超11个赞
$(function(){
$('button').click(function(){
//$(this)表示当前对象,在这里指的是button按钮
$(this).closest('tr').remove();
//或者:
$(this).parent().parent().remove();
//或者:
$(this).parents('tr').remove();
})
})
添加回答
举报
0/150
提交
取消