考虑以下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(我喜欢代码示例证明我错了)