gpt4 book ai didi

javascript - 为每个 child 循环 jQuery

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:17:47 25 4
gpt4 key购买 nike

我如何编写使用 for(i=1; ... ...); 的短代码?允许我遍历每个 child 并添加不同类的函数。

$('#WebPartWPQ3 > table:first-child').addClass('blogpost1');
$('#WebPartWPQ3 > table:nth-child(2)').addClass('blogpost2');
$('#WebPartWPQ3 > table:nth-child(3)').addClass('blogpost3');
$('#WebPartWPQ3 > table:nth-child(4)').addClass('blogpost4');
$('#WebPartWPQ3 > table:nth-child(5)').addClass('blogpost5');
$('#WebPartWPQ3 > table:nth-child(6)').addClass('blogpost6');
$('#WebPartWPQ3 > table:nth-child(7)').addClass('blogpost7');
$('#WebPartWPQ3 > table:nth-child(8)').addClass('blogpost8');
$('#WebPartWPQ3 > table:nth-child(9)').addClass('blogpost9');

最佳答案

尝试

$('#WebPartWPQ3 > table').each(function(i,j){

$(this).addClass("blogpost"+(i+1));
});

关于javascript - 为每个 child 循环 jQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10679476/

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