0

我需要帮助。我无法让 javascript 动态更改下面代码中列出的三个 div 的颜色。我在下面粘贴了完整的代码......

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"            "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<style>
.box{
width:100px;
height:100px;
}
</style>
</head>

<body>
<div class="box">
quote 1
</div>
<div class="box">
quote 2
</div>
<div class="box">
quote 3
</div>

<script type="text/javascript">
var bgcolorlist=new Array( "#ff33cc", "#cc33ff")

$(".box").css("background-color",bgcolorlist[Math.floor(Math.random()*bgcolorlist.length)]);
</script>

</body>
</html>
4

1 回答 1

0

您在 上使用 jQuery $(".box").css(),但尚未链接库!在当前脚本之前添加:

<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>

或者,根本不使用 jQuery:

var boxes = document.querySelectorAll('.box');
for(var i=0; i<boxes.length; i++) {
    boxes[i].style.backgroundColor = bgcolorlist[Math.floor(Math.random()*bgcolorlist.length)];
}
于 2013-08-20T00:19:22.093 回答