Simple HTML Game - Click and Change Colors
<html>
<head>
<title>Simple HTML Game - Click and Change Colors</title>
<style>
div {
width: 50px;
height: 50px;
background-color: #09f;
float: left;
}
</style>
</head>
<body>
<h1>Simple HTML Game - Click and Change Colors</h1>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<script>
var boxes = document.getElementsByTagName('div');
for (var i = 0; i < boxes.length; i++) {
boxes[i].addEventListener('click', function() {
this.style.backgroundColor = '#f00';
});
}
</script>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/lmfz 著作权归作者所有。请勿转载和采集!