0

这是html结构

<table class="views-table cols-3">
      <caption>
         <h2>LINK(which will hide/show all trs in this table)</h2>
      </caption>
   <thead>
   <tbody>
   ...
   </tbody>
</table>

该表在同一个类中重复n次。请帮助隐藏/显示所有tr -s 或单击链接的表中的整个 js 或 jquery 脚本。<tbody>

4

3 回答 3

3
 $('.views-table h2').click(function() {
      $(this).closest('table').find('tbody').toggle();
 });
于 2012-09-19T14:09:33.523 回答
2
$(".views-table h2").click(function(){
       var table = $(this).parents("table");
       var tbody = table.children("tbody");
       if(tbody.is(':visible')){
               tbody.hide();
       }else{
           tbody.show();
       }

});

试试这个链接http://jsfiddle.net/wFcpP/8/

于 2012-09-19T14:04:08.980 回答
0

在 jQuery 中:

(jQuery.noConflict())(function($){
    $('.views-table cols-3 h2').click(function(){
        if($(this).parent('.views-table').find('TBODY > TR')[0].is(':visible')) {
            $(this).parent('.views-table').find('TBODY > TR').hide();
        } else {
            $(this).parent('.views-table').find('TBODY > TR').show();
        }
    });
});
于 2012-09-19T13:55:18.517 回答