我的问题是如何选择.closest('table')
的{{1}}。
我试过了:
.closest('table')
并且它不起作用,有没有办法选择最近表的最近表?
答案 0 :(得分:4)
您可以使用.parents:
$('div').parents('table').eq(1).hide();
0最接近,1秒最近,2第三最近等等。
答案 1 :(得分:2)
答案 2 :(得分:0)
您可以在第一张桌子上放置一个ID:
<table id="firstTable">
$('div').closest('#firstTable').hide();