码迷,mamicode.com
首页 > Web开发 > 详细

防刷新倒计时JS代码

时间:2016-02-18 19:40:50      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:

 <SCRIPT type="text/javascript">
var exam_time=${testPaper.examTime*60};//获取后台传的时间
if(window.name==‘‘){
maxtime = exam_time;      //此处几句判断是防刷新关键
}else{
maxtime = window.name;
}

 
function CountDown(){
    if(maxtime>=0){
    hours = Math.floor(maxtime/3600);
    minutes = Math.floor((maxtime-hours*3600)/60);
    seconds = Math.floor(maxtime%60);
    msg = "距离考试结束还有"+hours+"时"+minutes+"分"+seconds+"秒";
    document.getElementById("time").innerHTML = msg;
    if(maxtime == 5*60) alert(‘注意,还有5分钟!‘);
    --maxtime;
    window.name = maxtime;
    }
    else{
    document.getElementById("frm").submit();
    clearInterval(timer);
    alert("考试时间到,结束!");
    }
    }
    timer = setInterval("CountDown()",1000);
</SCRIPT>

 

<center><font color="red"><div id="time"></div></font></center> //此处显示倒计时时间

防刷新倒计时JS代码

标签:

原文地址:http://www.cnblogs.com/shaoyang/p/5198914.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!