JS定时运行 setTimeout()

18 篇文章 0 订阅
1 篇文章 0 订阅

点击“开始”,计时开始。

点击“停止”,计时停止。

点击“清除”,清除已计算的时间。

特点:计时的数据用HTML5的localStorage存储。

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Survey</title>
<script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/1.9.1/jquery.min.js"></script>
<style type="text/css">
	h3,label {
	font-size:11px;
	}
	button{
		cursor:pointer;
	}
</style>
</head>

<script type="text/javascript">
var trun;
var pbut;
function startVote(){
	//localStorage
	if (localStorage.pagecount)
	{
		localStorage.pagecount=Number(localStorage.pagecount) + 1;
	}else{
		localStorage.pagecount=1;
	}
	document.getElementById("th1ID").innerHTML = "运行了: " + localStorage.pagecount + " 次。";
	//
        //这里可以干更多的事儿...
        //
        trun = setTimeout("startVote()",1000); //设置运行间隔时间,默认每1秒。
	document.getElementById("startPost").setAttribute('disabled','true');
}
function stopVote(){ 
	clearTimeout(trun);
	document.getElementById("startPost").removeAttribute('disabled');

}
function clearVote(){
	localStorage.pagecount = 0;
	document.getElementById("th1ID").innerHTML = "运行了: 0 次。";
	//$('#th1ID').html("运行了: 0 次。");
}
</script>

<body>

<h2 id='th1ID'>点击‘开始’按钮开始计时...</h2>
<button id='startPost' οnclick="startVote()"> 开始 </button>
<button id='stopPost' οnclick="stopVote()"> 停止 </button>
<button id='clearPost' οnclick="clearVote()"> 清除 </button>
</body>
</html>


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值