JavaScript實現隨機抽獎效果

weixin_30924079發表於2020-04-04

今天給大家通過JavaScript來簡單的實現一個隨機抽獎的效果,簡單的一段程式碼,有想要了解詳細的實現過程的下方會有其他資料另行分析


<html>
<title>隨機抽獎程式</title>
<head><meta http-equiv=Content-Type content="text/html; charset=gb2312">
</head>
<body>
<script type="text/javascript">
var alldata = "a,b,c,d,e"
var alldataarr = alldata.split(",");
var num = alldataarr.length-1 ;
var timer
function change()
{
document.getElementById("oknum").innerHTML = alldataarr[GetRnd(0,num)];
}
function start(){
clearInterval(timer);
timer = setInterval('change()',10);
}
function ok(){
clearInterval(timer);
document.getElementById("showresult").value=document.getElementById("oknum").innerText;
}
function GetRnd(min,max){
return parseInt(Math.random()*(max-min+1));
}
</script>
<center>
<div id="oknum" name="oknum" >請單擊開始</div>
<button οnclick="start()" accesskey="s">開始</button>
<button οnclick="ok()" accesskey="o">停止</button>
您的選擇是:
<input type="text" id="showresult" value="">
</center>
</body>
</html>

 

詳細的實現方式視訊講解
http://www.makeru.com.cn/live/1396_1003.html?s=45051

轉載於:https://www.cnblogs.com/QianD/p/11158511.html

相關文章