jq点击按钮查看更多,循环全部隐藏或显示jquery, each(function(i){})

时间:2022-12-22 20:53:43

页面上有10行,但我默认只显示5行,点击查看更多后,另外5行才显示出来,怎么实现呢
如下
注意,需要先引入jq插件

<tr id="tr" style="display:none">      
  <td >第一行</td>
  </tr>
  <tr id="tr" style="display:none">        
  <td >第二行</td>
  </tr>

  <tr><td><span id="more">查看更多</span></td></tr>


  <script> $("#more").click(function(){ $("tr[id='tr']").each(function(i){ $(this).show();//hide(); }); }); </script>