是否有一个jQuery选择器/方法来查找特定的父元素n级别?

时间:2009-03-30 21:08:08

标签: javascript jquery dom jquery-selectors

考虑以下HTML。如果我有一个对< button>的JSON引用元素,如何获得外部< tr>的引用?两种情况下的元素

<table id="my-table">
    <tr>
        <td>
            <button>Foo</button>
        </td>
        <td>
            <div>
                <button>Bar</button>
            </div>
        </td>
    </tr>
</table>

<script type="text/js">
    $('#table button').click(function(){
        //$(this).parent().parent() will work for the first row
        //$(this).parent().parent().parent() will work for the second row
        //is there a selector or some magic json one liner that will climb
        //the DOM tree until it hits a TR, or do I have to code this myself
        //each time?            
        //$(this).????
    });
</script>

我知道每种情况都有特殊情况,但我更感兴趣的是“无论你遇到多么深刻,爬上树直到你找到元素X”的风格解决方案。像这样的东西,但更多jQuery喜欢/更少详细

var climb = function(node, str_rule){
    if($(node).is(str_rule)){
        return node;
    }
    else if($(node).is('body')){
        return false;
    }
    else{
        return climb(node.parentNode, str_rule);
    }
};  

我知道父(expr)方法,但是从我所看到的是允许你过滤父级一级而不是爬树直到找到expr(我喜欢代码示例证明我错了)

3 个答案:

答案 0 :(得分:95)

parents功能可以满足您的需求:

$(this).parents("tr:first");

答案 1 :(得分:43)

此外,如果您使用的是jQuery 1.3+,则可以使用closest方法

$(this).closest("tr");

答案 2 :(得分:0)

不是jQuery,但这个选项效果更好

node.contains(otherNode)

  

Node.contains()方法返回一个布尔值,指示是否   节点是给定节点的后代还是不是

https://developer.mozilla.org/en/docs/Web/API/Node/contains