为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

当年话下 2021-01-12 14:14:11
比如<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();
})
})

查看完整回答
反对 回复 2021-03-26
  • 2 回答
  • 0 关注
  • 219 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信