window.setinterval
<!DOCTYPE html>
<html>
<head>
<title>dom1.html</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="this is my page">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
<script type="text/javascript">
//得到用户的操作,TRUE 或FALSE
//var r=confirm("ni asf");
//打开一个窗口
//填入地址栏
//window.open("dom2.html");
// alert(r);
// function fun() {
//500毫秒后触发代码
//settimeout("alert('kk')", 500);
// }
//产生一个得到每次固定调用代码的 setInterval 调用方法啊
//window.οnlοad=function () {
//定义全局变量a 每次间隔1秒就调用下面的函数为文本内容赋值
var b;
//var a= window.setinterval("fun1()", 1000);
b = window.setInterval("fun1()", 1000);
//}
function fun1() {
var time = new Date();
document.getelementbyid("te").value=time.tolocaleString();
}
function run() {
//點擊 按鍵停止動作
//window.clearinterval(a);
window.clearInterval(b);
}
//当鼠标点击的时候又开始
function start() {
b= window.setInterval("fun1()", 1000);
}
</script>
</head>
<body>
<input id="in" type='button' οnclick="fun()"> <br>
<input type="text" id="te" size="30" />
<input type="button" value="stop" οnclick="run()">
<input type="button" id="start" οnclick="start()"/>
</body>
</html>
相关阅读
setInterval 不同于setTimeout,setInterval会无限反复执行,如果要让setInterval停止执行该怎么做呢?只需要把setInterval()赋值给一
在javascript中 setInterval()、clearInterval()、cle
setInterval()是一种定时器,它按照指定的设置时间(以毫秒计)来调用函数的方法。clearInterval()是结束定时器的循环调用函数。除非调
window.setInterval()设置时间间隔执行其他.
<script>var p = document.getElementById('p');window.setInterval(function(){ var scrolltop = document.documentElement.s