您好,登錄后才能下訂單哦!
使用JavaScript怎么編寫一個隨機點名程序?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
<!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>隨機點名</title> <style> #content{ width: 600px; height: 400px; background: #000; margin: 100px auto; text-align: center; position: relative; line-height: 300px; color: dodgerblue; font-size: 70px; } #btn1{ background: #ccc; width: 180px; height: 80px; font-size: 30px; color: #f40; border-radius: 12px; position: absolute; bottom: 30px; left: 50%; margin-left: -90px; } </style> </head> <body> <div id="content"> <span id="span1"> 點擊開始 </span> <button id="btn1"> start </button> </div> <script> var arr = ['中國','英國','德國','美國','意大利','法國','西班牙','日本','阿聯酋','荷蘭','葡萄牙']; var $btn1 = document.getElementById('btn1'); var $content = document.getElementById('content'); var $span1 = document.getElementById('span1'); var timer;//計時器 var testNum = true; $btn1.onclick = function(){ if(testNum){ // console.log(1); start(); $btn1.innerHTML = 'stop'; testNum = false; } else{ // console.log(0); stop(); $btn1.innerHTML = 'start'; testNum = true; } } function start(){ timer = setInterval(function(){ var num = random(0,arr.length - 1); $span1.innerHTML = arr[num]; },50) } function stop(){ clearInterval(timer); } // 隨機函數 function random(a,b){ var randomNum = Math.round(Math.random() * (b - a) + a); return randomNum; } </script> </body> </html>
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。