jsは簡単なランダム点呼器を実現します。
本稿の例では、簡単なランダム点呼器を実現するためのjsの具体的なコードを共有します。
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
.box {
width: 200px;
height: 200px;
line-height: 200px;
background-color: #ccc;
font-size: 30px;
text-align: center;
}
</style>
</head>
<body>
<div class="box"> </div>
<input type="button" value=" " id="btn">
<!-- <button id="btn"> </button> -->
<script>
var btn = document.getElementById("btn");
var box = document.getElementsByClassName("box")[0];
// 3、 ?( ,
// , , )
btn.onclick = function() {
if(this.value===" ") {
function fn() {
var arr = [" "," "," "," "," "," "," "," "];
var index = parseInt(Math.random()*arr.length);
var n1 = parseInt(Math.random()*255+1);
var n2 = parseInt(Math.random()*255+1);
var n3 = parseInt(Math.random()*255+1);
box.style.background ="rgb("+n1+","+n2+","+n3+")" ;
box.innerHTML = arr[index];
}
this.value = " ";
// var ,
timer=setInterval(fn,2);
}else {
clearInterval(timer);
this.value = " ";
}
}
</script>
</body>
</html>
効果図は以下の通りです以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。