(18年)文本框输入一个正整数,然后单击begin按钮,系统开始以秒为单位倒计时,倒计时数值同时显示在文本框中,直至数值显示为0结束

<!DOCTYPE html>
<html>
<head>
	<title>以秒为单位的倒计时</title>
	<script type="text/javascript">
		function countDown(){
			var b=setInterval(function(){
			var a = document.getElementById('n');
			if(a.value<1){
				clearInterval(b);
				return;
			}
			a.value=a.value-1;
			},1000);
			
		}
	</script>
</head>
<body>
<input type="text" id="n" size="12"/>
<input type="button" value="Begin" onclick="countDown()">
</body>
</html>

注意:

clearInterval() 方法可取消由 setInterval() 设置的 timeout。

clearInterval() 方法的参数必须是由 setInterval() 返回的 ID 值。

上一篇:vue遇到的坑,linux服务器分区教程


下一篇:HTML鼠标划过更换图片(透视X-ray)