<table id="main_table">
<tr style="background-color:green; color:white">
<td class="flip"> Section 1 </td>
</tr>
<tr>
<td>
<table class="section">
<tr>
<td>item 111</td>
<td>item 112</td>
<td>item 113</td>
<td>item 114</td>
</tr>
</table>
</td>
</tr>
</table>
$('.flip').click(function() {
$(this)
.closest('table')
.next('.section')
.toggle('fast');
});
有人可以帮我更正上面的代码吗?我试过slidetoggle,但不知道为什么它不起作用
谢谢