jQuery:在函数内部使用 $(this) ?
有没有办法在 jQuery 函数中使用 $(this)
?
HTML
<ul>
<li class="delete"><a onclick="deletePerson(12);" href="">Delete</a></li>
</ul>
jQuery
function deletePerson(id) {
$(this).parent().remove(); // doesn't work
// [...]
return false;
}
Is there a way to use $(this)
inside jQuery functions?
HTML
<ul>
<li class="delete"><a onclick="deletePerson(12);" href="">Delete</a></li>
</ul>
jQuery
function deletePerson(id) {
$(this).parent().remove(); // doesn't work
// [...]
return false;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将引用作为参数传递:
Pass a reference as a parameter:
您可以使用
.call()
根据您的请求设置this
的值。现在,在
deletePerson
函数中,this
将成为元素。You can use
.call()
to set the value ofthis
as you requested.Now in the
deletePerson
function,this
will be the element.由于您使用的是 JS,因此您不需要在链接本身上添加 JS。
HTML
jQuery
You don't need to have JS on the link itself since you're using JS.
HTML
jQuery