在我們之前的文章中我們為大家介紹了關於JavaScript中計時器的原理,相信很多小夥們都對JavaScript定時器工作有了進一步的認識,既然原理我們知道了,那麼我們就來跟大家介紹下JavaScript中定時器的使用!
在javascritp中,有兩個關於計時器的專用函數,分別為:
1.倒數計時器:##
timename=setTimeout("function();",delaytime);
2.循環定時器:
timename=setInterval("function();",delaytime);
“alert('第一個警告窗口!');alert('第二個警告窗口!');”;而第二個參數“delaytime”則是間隔的時間,以毫秒為單位,即填寫“5000”,就表示5秒鐘。
倒數計時器是在指定時間到達後觸發事件,而循環定時器就是在間隔時間到來時反覆觸發事件,兩者的區別在於:前者只是作用一次,而後者則不停地作用。
例如你開啟一個頁面後,想間隔幾秒自動跳到另一個頁面,則你就需要採用倒數計時器「setTimeout("function();",delaytime)」 ,而如果想將某一句話設定成一個字的出現,
則需要用到循環定時器「setInterval("function();",delaytime)」 。
document.activeElement.id。利用if來判斷document.activeElement.id和表單的ID是否相同。 例如:if ("mid" == document.activeElement.id) {alert();},"mid"便是表單對應的ID。
用以指定在一段特定的時間後執行某段程式。
setTimeout("function",time) 設定一個逾時物件
表達式. setInterval("function",time) 設定一個逾時物件
clearInterval(物件) 清除已設定的setInterval物件
<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)"> <p id="word"></p><br/><br/> </body> </html>
<!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/> <p id="word"></p><br/><br/> </body> </html>
<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> <p id="m"></p> <input TYPE="button" value=" 计时开始" onclick="count()"> </body> </html>
<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>
#程式碼如下:
<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定時器(執行一次、重複執行)
1,只執行一次的計時器 程式碼如下:
<script> //定时器 异步运行 function hello(){ alert("hello"); } //使用方法名字执行方法 var t1 = window.setTimeout(hello,1000); var t2 = window.setTimeout("hello()",3000);//使用字符串执行方法 window.clearTimeout(t1);//去掉定时器 </script>
<script> function hello(){ alert("hello"); } //重复执行某个方法 var t1 = window.setInterval(hello,1000); var t2 = window.setInterval("hello()",3000); //去掉定时器的方法 window.clearInterval(t1); </script>
<!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 runat="server"> <title>Untitled Page</title> <script language="javascript" type="text/javascript"> var YC = new Object(); function beginYC() { var secondsYC = document.getElementById("txtYCSeconds").value; try { YC = setTimeout("alert('延迟"+secondsYC+"秒成功')",secondsYC*1000); } catch(e) { alert("请输入正确的秒数。"); } } function overYC() { clearTimeout(YC); YC=null; alert("终止延迟成功。"); } /**************************↓↓↓↓定时器的使用↓↓↓↓********************************/ var timerDS = new Object(); var timerDDS = new Object(); function beginDS() { sn.innerHTML = "0"; timerDS = setInterval("addOne()",parseInt(document.getElementById("txtIntervalSeconds").value,10)*1000); } function goonDS() { timerDS = setInterval("addOne()",parseInt(document.getElementById("txtIntervalSeconds").value,10)*1000); } function overDS() { clearInterval(timerDS); timerDS=null; } function delayDS() { overDS(); timerDDS = setTimeout("goonDS()",document.getElementById("txtDDSSeconds").value*1000); } function addOne() { if(sn.innerHTML=="10") { overDS(); alert("恭喜你,已成功达到10秒"); return; } sn.innerHTML=parseInt(sn.innerHTML,10)+1; } </script> </head> <body> <form id="form1" runat="server"> <p> 延迟器的使用:</p> <p> <label id="Label2" title="延迟秒数:"></label> <input type="text" id="txtYCSeconds" value="3" /> <input type="button" id="btnBYC" onclick="javascript:beginYC()" value="开始延迟" /> <input type="button" id="btnOYC" onclick="javascript:overYC()" value="终止延迟" /> <input type="button" id="Button1" onclick="javascript:alert('good monrning');" value="普通弹窗" /> </p> <br /> <p> 定时器的使用:</p> <p> <p id="sn">0</p> <label id="Label1" title="定时间隔秒数:"></label> <input type="text" id="txtIntervalSeconds" value="1" /> <input type="button" id="btnBDS" onclick="javascript:beginDS()" value="启动定时" /> <input type="button" id="btnODS" onclick="javascript:overDS()" value="终止定时" /> <input type="button" id="btnGDS" onclick="javascript:goonDS()" value="继续定时" /> <label id="ds" title="延迟秒数:"></label> <input type="text" id="txtDDSSeconds" value="5" /> <input type="button" id="btnDDS" onclick="javascript:delayDS()" value="延迟定时" /> </p> </form> </body> </html>
以上是JavaScript中定時器的使用範例詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!