ホームページ > 記事 > ウェブフロントエンド > js は単純な単一の数字のランダムな宝くじ (0-9)_javascript スキルを実装します
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>简易的单数字随机抽奖,抽取随机数的js特效代码</title> </head> <body> <div id="num"></div> <input value="start" id="start" type="button" /> <input value="stop" id="stop" type="button" /> <script> var num = document.getElementById("num"); var start = document.getElementById("start"); var _stop = document.getElementById("stop"); var intv = null; start.onclick = function(){ if(intv==undefined){ intv = setInterval(function(){num.innerHTML = Math.floor(Math.random()*10);},50); } } _stop.onclick = function(){ clearInterval(intv); intv=null; } </script> </body> </html>
今お見せしているのは操作のスクリーンショットですが、実際に操作して触ってみるとちょっとした達成感が得られます。
以上がこの記事の全内容です。引き続き深く学んでいただければ幸いです。