gpt4 book ai didi

javascript - 如何在重复的div中添加索引? (javascript)

转载 作者:行者123 更新时间:2023-12-02 22:35:47 25 4
gpt4 key购买 nike

  for(x=0;x<$this.listQuestion.length;x++){
$(".star-wrapper").append('<div class="star"></div>');
}
}
var x =0;
$(".star").each(function(){
$(".star").attr("index",x++);

})
  1. 如何用索引1、2、3制作星号?
  2. 现在索引星只有 2

最佳答案

$(".star").attr("index", x++) 将索引分配给所有 .star 元素,不是迭代的当前元素。您应该使用 $(this) 来代替。

var x = 0;
$(".star").each(function(){
$(this).attr("index",x++);
});

如果您希望索引从 1 开始,而不是 0,请将第一行更改为:

var x = 1;

关于javascript - 如何在重复的div中添加索引? (javascript),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58741415/

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