当前位置: 移动技术网 > IT编程>开发语言>JavaScript > Javascript实现倒计时(防页面刷新)实例

Javascript实现倒计时(防页面刷新)实例

2019年04月05日  | 移动技术网IT编程  | 我要评论

话不多说,请看实例代码

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<title>前端开发</title>
</head>
<body>
<script language="javascript">
var maxtime;
if(window.name=='' || window.name == '-1' || isnan(window.name)){
maxtime = 1*60;
}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.all["timer"].innerhtml = msg;
if(maxtime == 5*60) alert('注意,还有5分钟!');
--maxtime;
window.name = maxtime;
}
else{
clearinterval(timer);
alert("考试时间到,结束!");
}
}
timer = setinterval("countdown()",1000);
</script>
<div id="timer" style="color:red"></div>
</body>
</html>

js控制定时执行,每隔一段时间定时执行

//后台查询执行请求 1min , ajax_wx_payment 为方法名
setinterval(ajax_wx_payment,1000*60);

js控制延时跳转

//延迟跳转 20min
settimeout('ys_time_out()', 1000*60*20);

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持移动技术网!

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网