用点击事件做红绿灯2
Posted ruhai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用点击事件做红绿灯2相关的知识,希望对你有一定的参考价值。
点击事件红绿灯
<!doctype html>
<html lang=zh>
<head>
<meta charset="UTF-8">
<title>红绿灯</title>
<style>
.c1
width: 400px;
height: 400px;
border-radius: 50%;
border: 3px solid black;
.bg_red
background-color: red;
.bg_green
background-color: green;
</style>
</head>
<body>
<div class="c1 bg_red bg_green"></div>
<button id = 'b1'> change color </button>
<script >
let b1Ele = document.getElementById('b1');
b1Ele.onclick = function ()
let dEle = document.getElementsByClassName('c1')[0];
dEle.classList.toggle('bg_green');
;
</script>
</body>
</html>
以上是关于用点击事件做红绿灯2的主要内容,如果未能解决你的问题,请参考以下文章