gpt4 book ai didi

javascript - 针对 jQuery 中每个循环的嵌套 $(this)

转载 作者:IT王子 更新时间:2023-10-29 03:07:23 24 4
gpt4 key购买 nike

我试图弄清楚,在遍历某些列表项时,如何定位嵌套 foreach 循环中的每个“$(this)”等价物。这是我的问题的示例:

$('li').each(function(){
// I believe $(this) would target each li item...
$(this).children("li").each(function(){
// ... but how can I target each of these li items? Doesn't $(this) target the original loop?
});
});

最佳答案

$('li').each(function(){
var $this = $(this);
$this.children("li").each(function(){
$this; // parent li
this; // child li
});
});

关于javascript - 针对 jQuery 中每个循环的嵌套 $(this),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16346206/

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