拜托,你能告诉我为什么这个 JavaScriptdiv
在刷新时有不同的背景图像不起作用:
<head>
<script type="text/javascript">
window.onload = function () {
var thediv = document.getElementById("top");
var imgarray = new Array("banner2.jpg", "banner3.jpg");
var spot = Math.floor(Math.random()* imgarry.length);
thediv.style.background = "url(images/header/banner/"+imgarray[spot]+")";
}
</script>
</head>
该网站可以在http://physoc.org.uk看到
谢谢。