我正在尝试创建 64 个正方形并为每个正方形赋予独特的背景颜色。我很接近,但我似乎只能得到一种随机颜色。
function randomCol() {
return Math.floor(Math.random()*16777215).toString(16);
}
$(function(){
for(i=0; i<64; i++) {
$('<div class="square"></div>').insertAfter(".starter");
$(".square").css({'background':'#' + randomCol()});
}
});