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

javascript - How to hide the 2nd and 4th table row using css or jquery? - Stack Overflow

programmeradmin2浏览0评论

Its a dynamic code and i would like to hide second and 4th tr of the table using table id HMP_options. How to achieve this?

<table id="HMP_options" width="100%" cellspacing="0" cellpadding="0" border="0">
  <tbody>
     <tr>
       <td align="left" colspan="2">
          <table cellspacing="0" cellpadding="0" border="0">
            <input></input>
                 <tbody>
                    <tr><td></td></tr>
                    <tr><td></td></tr>    /* this tr i want to hide */
                    <tr><td></td></tr>
                    <tr><td></td></tr>
                    <tr><td></td></tr>   /* this tr i want to hide */
                 </tbody>
           </table>
        </td>
       </tr>

Its a dynamic code and i would like to hide second and 4th tr of the table using table id HMP_options. How to achieve this?

<table id="HMP_options" width="100%" cellspacing="0" cellpadding="0" border="0">
  <tbody>
     <tr>
       <td align="left" colspan="2">
          <table cellspacing="0" cellpadding="0" border="0">
            <input></input>
                 <tbody>
                    <tr><td></td></tr>
                    <tr><td></td></tr>    /* this tr i want to hide */
                    <tr><td></td></tr>
                    <tr><td></td></tr>
                    <tr><td></td></tr>   /* this tr i want to hide */
                 </tbody>
           </table>
        </td>
       </tr>

Share Improve this question edited Feb 4, 2014 at 7:11 user2787474 asked Feb 4, 2014 at 6:48 user2787474user2787474 1293 gold badges5 silver badges18 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 7

I would use this CSS rule:

#HMP_options table tr:nth-child(-2n + 4) {
    display: none;
}

http://jsfiddle/ZXjWV/

Since this is IE9+ you might want to make jQuery help it.

In this example I assumed that you want only hide 2nd and 4th row. If you want to hide 6th, 8th and so on as well you should use :nth-child(2n) rule.

try this

.HMP_options > table td:nth-child(2),
.HMP_options > table td:nth-child(4) { display:none;}

Using css:

.HMP_options tr:nth-child(2), .HMP_options tr:nth-child(4){display: none;}

Using jQuery:

$('.HMP_options tr:nth-child(2), .HMP_options tr:nth-child(4)').css('display','none');

Use eq in jquery . Select the element at index n within the matched set. Zero-based index of the element to match.

 $("tr:eq(1),tr:eq(4)").hide();
发布评论

评论列表(0)

  1. 暂无评论