gpt4 book ai didi

javascript - 随机列表元素,多次调用

转载 作者:行者123 更新时间:2023-11-28 19:14:53 25 4
gpt4 key购买 nike

我正在尝试随机化十个容器的背景颜色。使用当前的 jQuery,颜色在加载时是随机的,但所有容器都使用相同的颜色。我将如何更改代码以分别调用 .box

的每个实例
$(document).ready(function(){
var colors = ["#BF2642","#191B29","#366377"];
var rand = Math.floor(Math.random()*colors.length);
$('.box').css("background-color", colors[rand]);
});

最佳答案

只需循环 .box 元素并为每个元素计算 rand:

$(document).ready(function(){
var colors = ["#BF2642","#191B29","#366377"];
$('.box').each(function(){
var rand = Math.floor(Math.random()*colors.length);
$(this).css("background-color", colors[rand]);
});
});

关于javascript - 随机列表元素,多次调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30080292/

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