gpt4 book ai didi

javascript - 让背景在加载时随机化?

转载 作者:行者123 更新时间:2023-11-28 20:26:01 25 4
gpt4 key购买 nike

所以是的,我不太擅长让这个页面做到这一点。我的目标是让背景应用随机颜色。因此,我将一些颜色放入一个数组中,并决定从中随机选择一种。这是我的尝试,但没有影响。

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
</head>
<body>
<script>
var r = Math.floor((Math.random()*4)+1);
var colors=["red", "blue", "green", "yellow", "pink"];
bodyObject.bgColor=colors[r].toString();
</script>
</body>
</html>

最佳答案

试试这个...

<script>    
window.onload = function(){
var r = Math.floor((Math.random()*4)+1);
var colors=["red", "blue", "green", "yellow", "pink"];
document.body.style.backgroundColor =colors[r];
}
</script>

关于javascript - 让背景在加载时随机化?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17422215/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com