jquery $(this)的疑问?求解释

比如
<tr><td><input type='button' oncilck='ckick_func()'/></td><tr>

那我在ckick_func()中获取的 $(this)是什么,是这个按钮么
如果是 那我 $(this).parent().parent().remove()又删除不了这一行
$(this)获取的是什么 我是新手

当年话下
浏览 220回答 2
2回答

繁星淼淼

$(function(){$('button').click(function(){//$(this)表示当前对象,在这里指的是button按钮$(this).closest('tr').remove();//或者:$(this).parent().parent().remove();//或者:$(this).parents('tr').remove();})})
打开App,查看更多内容
随时随地看视频慕课网APP