我有由PHP生成的简单表。

<table border="1" id="control>
    <tbody>
        <tr>...</tr>
        <tr>...</tr>
        <tr>...</tr>  //Row #3
        <tr>...</tr>
        <tr>...</tr>
        <tr>...</tr>
    </tbody>
</table>


当页面使用javascript或css加载时,我想隐藏第三行。有没有办法提供第三行ID?

先感谢您

最佳答案

使用css3,您可以使用:nth-​​child选择器

#control tr:nth-child(3)
{
   display:none;
}

10-05 20:53
查看更多