gpt4 book ai didi

javascript - 我如何使用 jQuery 遍历祖先?

转载 作者:行者123 更新时间:2023-11-30 08:56:17 26 4
gpt4 key购买 nike

我如何使用 jQuery 遍历祖先?

当前代码陷入递归循环:

HTML:

<html>
<body>
<div>
<ul>
<li></li>
</ul>
</div>
</body>
</html>

JS:

function traverse($node){
while ( $node.get(0) !== $("html").get(0) ) {
console.log($node);
traverse($node.parent());
}

}

//traverse($("ul li"));

要观察问题,请取消对最后一行的注释,但请注意它可能会卡住您的浏览器。

在 JSFiddle 上也是如此:http://jsfiddle.net/WpvJN/1/

最佳答案

您可以使用.parents() 获取该集合并用 .each() 迭代:

$('ul li').parents().each(function () {
console.log(this);
});

关于javascript - 我如何使用 jQuery 遍历祖先?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13371261/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com