代码之家  ›  专栏  ›  技术社区  ›  Slee

使用jquery选择大于n的表列?

  •  2
  • Slee  · 技术社区  · 14 年前

    jquery中是否有方法选择所有大于4的td列?我有一个16列的表,我最初只想显示前4列。

    我知道我可以用:

    $('tr td:nth-child(5)').hide(); 
    

    一次隐藏一个类,然后对所有的类加上一个类,但是如果有一种更简单的jquery方法来实现这一点就好了。

    4 回复  |  直到 14 年前
        1
  •  3
  •   David Thomas    14 年前
        $('tr').each(
            function(){
               $(this).find('td:gt(3)').hide();
            });
    

    Demo at: http://jsfiddle.net/davidThomas/7SDpr/ .

        2
  •  2
  •   Kyle Trauberman pestades    14 年前

    你可以使用 :gt() 执行此操作的选择器:

    $('tr td:gt(4)').hide(); 
    

    Documentation

    编辑:

    正如帕特里克所指出的,这不会对每一排都起作用。你需要使用。每一行应用这个。

    $('tr').each(
        function() {
           $(this, ).find('td:gt(4)').hide();
        });
    
        3
  •  2
  •   user113716    14 年前

    你可以进去 an .each() using .slice() 这样地:

    例子: http://jsfiddle.net/kEByC/

    $('tr').each(function() {
        $(this).children().slice(3).hide();
    });
    

    或者像这样 using .nextAll() :

    例子: http://jsfiddle.net/kEByC/1

    $('tr > td:nth-child(3)').nextAll().hide();
    
        4
  •  0
  •   Talel    7 年前

    试试这个:

     $('tr > td:nth-child(n+3)').hide();