如何在 Javascript/JQuery 和 CSS 中隐藏除第一个子级之外的所有子级?
HTML:
<table id="collapse">
<tbody>
<tr>
<th>Heading</th>
</tr>
<tr>
<td>Text</td>
</tr>
<tr>
<td>Text</td>
</tr>
</tbody>
</table>
Javascript/JQuery:
<script type="text/javascript">
$(document).ready(function()
{
$('#collapse');
});
</script>
CSS:
<style type="text/css">
#collapse tr{display:none;}
#collapse tr:first-child{display:table-row;}
/* or is there a prettier, better way to do this? */
</style>
如何在页面加载时隐藏除 Javascript/JQuery 和 CSS 中的第一个子元素之外的所有子元素?
所以,它实际上应该只显示:
<table id="collapse">
<tbody>
<tr>
<th>Heading</th>
</tr>
</tbody>
</table>
注意: 我不想像 .hide_child{display:none;}
那样向每个子元素添加 CSS 类
HTML:
<table id="collapse">
<tbody>
<tr>
<th>Heading</th>
</tr>
<tr>
<td>Text</td>
</tr>
<tr>
<td>Text</td>
</tr>
</tbody>
</table>
Javascript/JQuery:
<script type="text/javascript">
$(document).ready(function()
{
$('#collapse');
});
</script>
CSS:
<style type="text/css">
#collapse tr{display:none;}
#collapse tr:first-child{display:table-row;}
/* or is there a prettier, better way to do this? */
</style>
How do I hide all children except the for the first child in Javascript/JQuery and CSS on page load?
So, it should actually just display:
<table id="collapse">
<tbody>
<tr>
<th>Heading</th>
</tr>
</tbody>
</table>
Note: I'd rather not add a CSS class to each child like .hide_child{display:none;}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅:http://jsfiddle.net/FeVnt/
see: http://jsfiddle.net/FeVnt/