我正在做一个简单的项目,每次点击网页时都会改变网页的背景。我成功了,测试了几次,保存,再次测试,然后离开。
我回家加载它..它不再起作用了。我使用的是同一个浏览器,我不知道会有什么改变。。我一定搞砸了一些几乎不可能的方式。但是,唉,我坐在这里傻眼了。。
谁能看看我的简单程序并告诉我出了什么问题?(同样,该程序的目的是在您单击页面时将网页的背景颜色更改为随机颜色。)
这是代码:
<!DOCTYPE HTML PUBLIC>
<html>
<head>
<title>Random Colors</title>
<script language="javascript">
function randomColor() {
var h0 = Math.floor(Math.random()*99);
var h1 = Math.floor(Math.random()*99);
var h2 = Math.floor(Math.random()*99);
var h3 = Math.floor(Math.random()*99);
var h4 = Math.floor(Math.random()*99);
var h5 = Math.floor(Math.random()*99);
return '#'.toString(16)+h0.toString(16)+h1.toString(16)+h2.toString(16);+h3.toString(16)+h4.toString(16)+h5.toString(16);
}
</script>
</head>
<body onclick="document.bgColor=randomColor();">
</body>
</html>
如果有人可以提供帮助,请提前致谢。