gpt4 book ai didi

javascript - 使用javascript在div上动态改变颜色

转载 作者:行者123 更新时间:2023-11-28 12:29:43 26 4
gpt4 key购买 nike

我需要帮助。我无法让 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>

最佳答案

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

<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)];
}

关于javascript - 使用javascript在div上动态改变颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18325026/

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