javascriptのタイマー

10756 ワード

window                  ,   window.setTimeout() window.setInterval。                   ;                      。

window.setTimeout(expression,milliseconds); 
window.setInterval(expression,milliseconds); 
setTimeout(hello,5000);//5    
    setTimeout('hello()',3000);//3    
    setTimeout(hello(),8000);//    
         ,    js  ,     ,          
         ,               ,          :
function _hello(_name){ 
        return function(){ 
            hello2(_name); 
        } 
    } 
setTimeout(_hello(name),7000);//    
   setInterval ,  (    )                ,             ,  JavaScript             
( :            ,                    ,    ,                 )
 setInterval
          (    600ms    )      (   200ms),              (                  ),             ,             ,               。  ,      setTimeout。
       :                  200ms ,          ,               
 :               ;               (      )。
setTimeout(function(){    //      setTimeout(arguments.callee,2000);                   },2000);setInterval(function(){    //                     },200);二つの例をざっと挙げる例1.フォームトリガまたは読み込み時に、文字列をワードごとに出力します.
 
  
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title> </title>
<script language="JavaScript" type="text/javascript">
var str = " ";
var seq = 0;
var second=1000; // 1
function scroll() {
msg = str.substring(0, seq+1);
document.getElementByIdx_x_x('word').innerHTML = msg;
seq++;
if (seq >= str.length) seq = 0;
}
</script>
</head>
<body onload="setInterval('scroll()',second)">
<div id="word"></div><br/><br/>
</body>
</html>
 
例2.入力枠にフォーカスがある場合は、入力枠情報をタイミングチェックし、フォーカスがない場合はチェック動作を実行しない.
 
  
<!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>
<script language="JavaScript" type="text/javascript">
var second=5000; // 5
var c=0;
function scroll() {
c++;
if ("b" == document.activeElement.id) {
var str=" <b> "+c+" </b> <br/>";
if(document.getElementByIdx_x_x('b').value!=""){
str+=" <br/><b> "+document.getElementByIdx_x_x('b').value+"</b>";
}
document.getElementByIdx_x_x('word').innerHTML = str;
}
}
</script>
</head>
<body>
<textarea id="b" name="b" style="height:100px; width:300px;" onfocus="setInterval('scroll()',second)"></textarea><br/><br/>
<div id="word"></div><br/><br/>
</body>
</html>
例3.以下のこれは一番簡単な例です.タイマー時間が来たら警告ウィンドウをポップアップします.
 
  
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<script language="javascript">
function count() {
document.getElementByIdx_x_x('m').innerHTML=" !";
setTimeout("alert(' !')",10000)
}
</script>
<body>
<div id="m"></div>
<input TYPE="button" value=" " onclick="count()">
</body>
</html>
例4:カウントダウン時ジャンプ
 
  
<html>
<head>
  <base href="<%=basePath%>">
  <title>My JSP 'ds04.jsp' starting page</title>
  <span id="tiao">3</span>
  <a href="javascript:countDown"> </a> ……
  <meta http-equiv=refresh content=3;url= '/ds02.jsp'/>
  <!-- -->
  <script language="javascript" type="">
function countDown(secs){
 tiao.innerText=secs;
 if(--secs>0)
  setTimeout("countDown("+secs+")",1000);
 }
 countDown(3);
 </script>
  <!-- -->
 </head>
例6:
 
  
<head>
    <meta http-equiv="refresh" content="2;url='b.html'">
</head>
例7:
 
  
<script language="javascript" type="text/javascript">
 setTimeout("window.location.href='b.html'", 2000);
 //
 //setTimeout("javascript:location.href='b.html'", 2000);
 //setTimeout("window.location='b.html'", 2000);
</script>
例8:
 
  
<span id="totalSecond">2</span>
<script language="javascript" type="text/javascript">
 var second = document.getElementByIdx_x('totalSecond').innerHTML;
 if(isNaN(second)){
  //……
 }else{
  setInterval(function(){
   document.getElementByIdx_x('totalSecond').innerHTML = --second;
   if (second <= 0) {
    window.location = 'b.html';
   }
  }, 1000);
 }
</script>
jsタイマー(一回実行、繰り返し実行)
セグメントjsコードを共有して、jsタイマーの小さい例に関して、一回実行するタイマーと繰り返し実行するタイマーに分けます.初心者の参考に供する.
1,一回だけ実行するタイマー
 
  
<script> 
//  
function hello(){ 
    alert("hello"); 

//  
var t1 = window.setTimeout(hello,1000); 
var t2 = window.setTimeout("hello()",3000);//  
window.clearTimeout(t1);//  
</script>
2,繰り返し実行するタイマー
 
  
<script> 
function hello(){ 
    alert("hello"); 

//  
var t1 = window.setInterval(hello,1000); 
var t2 = window.setInterval("hello()",3000); 
//  
window.clearInterval(t1); 
</script>
備考:
一つのページに二つの方法がある場合、ページのロードが完了した後に実行されますが、実際には先着順に実行できませんでした.Oloadメソッドにタイマーを追加して、タイマーを設定して、「遅延」の時間が経過したら、ページのロード方法の順序を区別できると思います.
>
<)xmlns="http://www.w3.org/1999/xhtml">>
<head runan=「server」>
    Unititled Page
    <スクリプトlaguage="javascript"type="text/javascript"    var YC=new Object();    function beginYC()    {        var secondsYC=document.getElemenntById.value;        try        {            YC=setTimeout(「遅延」+secondsYC+「秒成功」)、secondsYC*1000)        }         catch(e)        {            alert(「正しい秒数を入力してください.」)        }     }     function overYC()    {        clearTimeout(YC)        YC=null        alert(「終了遅延成功」);    } /**************************↓↓↓タイマーの使用↓↓↓↓↓******************************    var timeraDS=new Object();    var timerDDS=new Object()    function begiDS()    {        sn.innerHTML="0"        timeraDS=set Interval(「addOne()」、parseInt(document.getElement ById(「txt Interval Seconds」).value、10)*1000).    }     function gonDS()    {        timeraDS=set Interval(「addOne()」、parseInt(document.getElement ById(「txt Interval Seconds」).value、10)*1000).    }     function overDS()    {        clear Interval(timerDS);        timerDS=null;    }     function delayDS()    {        overDS();        timerDDS=setTimeout(「goodDS()」、document.getElement ById(「txtDDSSeconds」)、value*1000)、    }     function addOne()    {        if(sn.inner HTML=="10")        {            overDS();            alert(「おめでとうございます.成功して10秒になりました.」)            return;        }         sn.inners HTML=parseInt(sn.inners HTML,10)+1    }    
<body>
   
   

        ディレイの使用:

   

    

   

   

        タイマーの使用: