// JavaScript Document
var data=['iPhone5','50元充值卡','100元超市购物卷','数码相机','谢谢参与!','笔记本电脑','笔记本','SB称号','抽个毛线'];
var timer=null;
window.onload=function()
{
var title=document.getElementById('title'),
begin=document.getElementById('begin'),
stop1=document.getElementById('stop');
begin.onclick=begindraw;
stop1.onclick=function(){
clearInterval(timer);
begin.style.background="#00C";
}
}
function begindraw()
{
clearInterval(timer);
timer=setInterval(bdraw,50);
this.style.background="#999";
}
function bdraw()
{
var random1=Math.floor(Math.random()*data.length);
//console.log(random1);
title.innerHTML=data[random1];
}
结果还是一样可以运行没问题。
舞歌
相关分类