admin管理员组文章数量:1345322
How to hide All rows except current (clicked Row) using jQuery?
I want to hide all rows when i click the particular row except current one row.
<table>
@foreach (var item in Model)
{
idValue++;
<tr class="tableRow" id="@idValue">
<td class="master" id="@item.Batch_Seq">
<a href= "#" >@(item.Batch_Name)></a>
</td>
<td>
@(item.Present)
</td>
<td>
@(item.Absent)
</td>
<td>
@(item.HalfDay)
</td>
<td>
@(item.Batch_count)
</td>
</tr>
}
</table>
I tried like this
$('.tableRow').hide();
$(this).closest('tr:not(.tableRow)').hide();
Could anyone help me?
How to hide All rows except current (clicked Row) using jQuery?
I want to hide all rows when i click the particular row except current one row.
<table>
@foreach (var item in Model)
{
idValue++;
<tr class="tableRow" id="@idValue">
<td class="master" id="@item.Batch_Seq">
<a href= "#" >@(item.Batch_Name)></a>
</td>
<td>
@(item.Present)
</td>
<td>
@(item.Absent)
</td>
<td>
@(item.HalfDay)
</td>
<td>
@(item.Batch_count)
</td>
</tr>
}
</table>
I tried like this
$('.tableRow').hide();
$(this).closest('tr:not(.tableRow)').hide();
Could anyone help me?
Share edited Feb 3, 2016 at 17:27 marc_s 756k184 gold badges1.4k silver badges1.5k bronze badges asked Jun 18, 2013 at 7:36 Kanagaraj VadivelKanagaraj Vadivel 4732 gold badges7 silver badges14 bronze badges 03 Answers
Reset to default 7You seem to want this :
$('.tableRow').click(function(){
$('.tableRow').hide(); // hide all rows
$(this).show(); // show the clicked one
});
Note that the user can't notice the row was hidden then shown : the screen isn't repaint until the event handler ends.
Use .not() to select all elements with class tableRow
except for the one that was clicked(this
)
$('tr.tableRow').click(function() {
$('tr.tableRow').not(this).hide();
});
You can use not() to hide everything that isn't "this":
$('table tr.tableRow').click(function(){
$('table tr').not(this).hide(); // hide everything that isn't "this"
});
or you can use .siblings() to hide the siblings of the clicked row
$('table tr').click(function(){
$(this).siblings().hide(); // hide the siblings of the clicked row
});
Working example : http://jsfiddle/ouadie/U7eUR/
本文标签: javascriptHow to do this hide all rows except one row in jQueryStack Overflow
版权声明:本文标题:javascript - How to do this hide all rows except one row in jQuery? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743773225a2536504.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论