我正在試圖創建64個方塊並給每個獨特的背景顏色。我非常接近,但我似乎只能得到一種隨機顏色。多循環結果for循環?
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()});
}
});
「一個隨機顏色」 ,因爲對'Math.random()'的調用每次都返回相同的數字? – KRyan 2012-08-01 20:39:58