Use JS to implement a random roll call system for your reference. The specific content is as follows Ten minutes before every class, the teacher would ask us to answer questions, but every time he would call out the student numbers, and it seemed like I would win every time. So I directly suggested to the teacher, "Teacher, let me use JS to help you write a random roll call system!" This way I won't be picked every time, haha First look at the effect: The code is as follows: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <button id="box1">Start</button> <button id="box2">End</button> <span id="box">Tom</span> <script> //Get the element in the page var btn1 = document.getElementById('box1'); var btn2 = document.getElementById('box2'); var span = document.getElementById('box'); var names = ['Tom', 'Jack', 'Lucy', 'Peter', 'Mark', 'Min', 'Liu', 'Rani']; var timer; btn1.onclick = function() { window.clearInterval(timer); timer = window.setInterval(countName, 100); }; btn2.onclick = function() { window.clearInterval(timer); }; function countName() { var index = parseInt(Math.random() * names.length); span.innerHTML = names[index]; } </script> </body> </html> The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: How to add ansible service in alpine image
CentOS 6 and earlier versions provide MySQL serve...
This article example shares the specific code of ...
1. What problems did we encounter? In standard SQ...
Some time ago, when I was working on a small func...
Classification of website experience 1. Sensory e...
IE8 new feature Web Slices (Web Slices) Microsoft...
1. Add users and groups 1. Add mysql user group #...
Panther started as a rookie, and I am still a roo...
The so-called sliding door technology means that ...
Table of contents 1. MySQL data backup 1.1, mysql...
recommend: Navicat for MySQL 15 Registration and ...
Table of contents Why do we need garbage collecti...
Table of contents Preface 1. With vue-cli 1. Defi...
The BGCOLOR attribute can be used to set the back...
I have also been researching MySQL performance op...