必威体育Betway必威体育官网
当前位置:首页 > IT技术

javascriptwindow对象setInterval()事件

时间:2019-08-06 04:41:08来源:IT技术作者:seo实验室小编阅读:78次「手机版」
 

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设置停止和循环

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

分享到:

栏目导航

推荐阅读

热门阅读