如何在 Javascript/JQuery 和 CSS 中隐藏除第一个子级之外的所有子级?

发布于 2024-11-28 19:53:08 字数 1138 浏览 1 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

十六岁半 2024-12-05 19:53:08
<script type="text/javascript">
    $(document).ready(function()
    {
        $('#collapse tr').not(":first-child").hide();
    });
</script>

请参阅:http://jsfiddle.net/FeVnt/

<script type="text/javascript">
    $(document).ready(function()
    {
        $('#collapse tr').not(":first-child").hide();
    });
</script>

see: http://jsfiddle.net/FeVnt/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文