0
我想隨機化十個容器的背景顏色。使用當前的jQuery,顏色隨機加載,但所有容器使用相同的顏色。我將如何改變代碼,以在.box
元素.box
隨機列表元素,多個調用
$(document).ready(function(){
var colors = ["#BF2642","#191B29","#366377"];
var rand = Math.floor(Math.random()*colors.length);
$('.box').css("background-color", colors[rand]);
});