2

它应该很简单,但是这个 jQuery 函数占用了很多元素,它甚至隐藏了我认为的 jQuery。

我想做的是,当一个人点击一个tr th时,所有下一个tr td都应该隐藏到下一个tr th

我怎样才能让这个代码工作?

    <!DOCTYPE html>
<html>
<head>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
  <style>
th {  background:#dad;
      font-weight:bold;
      font-size:16px; 
      width: 50%;
}
td {  background:red;
      font-weight:bold;
      font-size:16px; 
      width: 50%;
}
</style>
</head>
<body>
  <table id="example">
    <tr>
      <th>
        <button>Show it 3</button>
      </th>
    </tr>
    <tr>
      <td>test 1</td>
    </tr>
    <tr>
      <td>test 2</td>
    </tr>
    <tr>
      <th>
        <button>Show it 2</button>
      </th>
    </tr>
    <tr>
      <td>test 3</td>
    </tr>
    <tr>
      <td>test 4</td>
    </tr>
  </table>

    <script>
      $('#example tr th').click( function() {
        //alert($(this).parent().html())
        $(this).parent().nextUntil('tr th').toggle();
      })
    </script>
</body>
</html>
4

2 回答 2

1

您可以向tr具有th元素的元素添加一个类:

<table id="example">
    <tr>
      <th class='toggle'>
        <button>Show it 3</button>
      </th>
    </tr>
    <tr>
      <td>test 1</td>
    </tr>
    <tr>
      <td>test 2</td>
    </tr>
    <tr class='toggle'>
      <th>
        <button>Show it 2</button>
      </th>
    </tr>
    <tr>
      <td>test 3</td>
    </tr>
    <tr>
      <td>test 4</td>
    </tr>
  </table>

$('#example tr th').click( function() {
   $(this).parent().nextUntil('.toggle').toggle();
})

演示

于 2012-07-10T14:06:23.207 回答
1

这是一种主要使用dom的方法

  $('#example tr td button').on('click',function(e){
       var curr = this;
       // get the tr where the button was clicked
       while(curr.nodeType!=='tr') curr = curr.parentNode;
       // now get sibling nodes
       while((curr=curr.nextSibling)){
           if(curr.firstChild.nodeType==='td') $(curr).hide();
           else if(curr.firstChild.nodeType==='tr') return;
       }
    }

或者,使用更多 jQuery:

$('#example tr td button').on('click',function(e){
    var siblings = $(this).siblings();
    for(var i=0; i < siblings.length; i++){
        if(siblings[i].find('td').length) $(siblings[i]).hide();
        else if(siblings[i].find('tr').length) return;
    }
 });
于 2012-07-10T14:09:01.827 回答