gpt4 book ai didi

javascript - 一种更好的方法来定位添加的第 n 个子元素

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:55:20 26 4
gpt4 key购买 nike

添加新视频时,我发现以下方法有点单调。基本上我的目标是每一个添加的第 n 个 child 。

$(document).ready(function(){
$("li:nth-child(5) img").appendTo("li:nth-child(5) .video-gradient");
$("li:nth-child(6) img").appendTo("li:nth-child(6) .video-gradient");
$("li:nth-child(7) img").appendTo("li:nth-child(7) .video-gradient");
$("li:nth-child(8) img").appendTo("li:nth-child(8) .video-gradient");
$("li:nth-child(9) img").appendTo("li:nth-child(9) .video-gradient");
}

有没有更好的方法可以实现代码(让我们在 for 循环中)来避免我必须将元素 nth-child 附加到添加的视频元素?

非常感谢罗比

最佳答案

for 循环怎么样?

for (var i = 5; i < 10; i++) {
$("li:nth-child(" + i + ") img").appendTo("li:nth-child(" + i + ") .video-gradient");
}

关于javascript - 一种更好的方法来定位添加的第 n 个子元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46237892/

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