我試圖使用數組中的隨機顏色更改元素的背景顏色。有代碼:懸停時的背景顏色不變
$(document).ready(function(){
var randomColors = ['#00eeff','#fcff00','#9600ff'];
var rndNum = Math.floor(Math.random() * randomColors.length);
$("div.anyclass").hover(
function() {
$(this).css({'background-color' : 'randomColors[rndNum]'})
},
function() {
$(this).css({'background-color' : '#fff'});
});
});
所以,它不工作,問題在哪裏?