gpt4 book ai didi

jquery - jquery 中的父选择器

转载 作者:行者123 更新时间:2023-12-01 00:05:09 24 4
gpt4 key购买 nike

我有一个表格行,当单击“removerow”类的 anchor 时需要隐藏该行。

<tr><td>Product Name</td><td><a class="removerow">Remove</a></td></tr>

我一直在尝试这个,但它不起作用:

$("a.removerow").click(function(){
$(tr > this).hide();

});

如何选择带有“.removerow”子代的整个表格行。

我做错了什么?

谢谢。

最佳答案

jQuery 的 closest(selector) 函数将向上遍历并返回提供的最近的选择器。

(如果单击的元素与给定的选择器相同,则返回该元素。)

http://api.jquery.com/closest/

$("a.removerow").click(function(e){
$(this).closest('tr').hide();
e.preventDefault();
});

e.preventDefault() 将禁用 a 元素的默认行为。

关于jquery - jquery 中的父选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2647411/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com