最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

How do I hide all children except the for the first child in JavascriptJQuery and CSS? - Stack Overflow

programmeradmin3浏览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>

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;}

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;}

Share Improve this question asked Aug 10, 2011 at 7:36 user317005user317005
Add a ment  | 

1 Answer 1

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

see: http://jsfiddle/FeVnt/

发布评论

评论列表(0)

  1. 暂无评论