使用 Jquery close() 函数?
这是我的 HTML:
<tr>
<td class="show_r3c">click here</td>
</tr>
<tr class="r3c">
<td>This is what I'd like to display</td>
</tr>
我目前已经得到了这个 JQuery 代码,
$(document).ready(function(){
$(".r3c").hide();
$('.show_r3c').click(function() {
$(this).closest('.r3c').toggle();
return false;
});
});
由于某种原因,closest()
函数不起作用,并且它不会切换表格行.r3c
- 我尝试过使用父级和其他替代方案,但也无法使其工作:(
对于这个愚蠢的问题以及与我之前遇到的类似问题表示歉意。只是想知道,最好的解决方案是什么?
谢谢!
Here's my HTML:
<tr>
<td class="show_r3c">click here</td>
</tr>
<tr class="r3c">
<td>This is what I'd like to display</td>
</tr>
And I have currently got this JQuery code,
$(document).ready(function(){
$(".r3c").hide();
$('.show_r3c').click(function() {
$(this).closest('.r3c').toggle();
return false;
});
});
For some reason the closest()
function isn't working, and it won't toggle the table row .r3c
- I've tried using parent and other alternatives but can't get it working either :(
Apologies for the silly question, and something similar to a problem I've had before. Just wondering, What's the best solution for this ?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Closest() 找到最近的父母,而不是父母-兄弟姐妹-孩子。
你想要这样的东西:
closest() finds the closest parent not the parents-siblings-children.
You want something like:
尝试使用:
Try with:
也许这会起作用:
perhaps this would work: