setTimeout()--用於指定在一段特定的時間後執行某段程序。
格式:
[定時器對象名=]setTimeout(“<表達式>”,毫秒數);
功能: 執行<表達式>一次。
其中表達式是字符串,可以使任意javascript語句
復制代碼 代碼如下:
<html>
<head>
<script type="text/javascript">
//5秒之後執行alert
function count(){
setTimeout("alert('執行成功');",5000);
}
</script>
</head>
<body>
<input type="button" value="執行" onclick="count()">
</body>
</html>
setInterval()—重復執行<表達式>,直至窗口、框架被關閉或執行clearInterval
格式: [定時器對象名=]setInterval(“<表達式>”,毫秒)
clearInterval() 終止定時器
格式: clearInterval(定時器對象名)
復制代碼 代碼如下:
<html>
<head>
<script type="text/javascript">
var sec=0;
var timeId=setInterval("count();",1000);
function count(){
document.getElementById("num").innerHTML=sec++;
}
function stopCount(){
clearInterval(timeId);
}
</script>
</head>
<body>
<font style="color:red" id="num">0</font>秒鐘<input type="button" value="停止" onclick="stopCount();">
</body>
</html>
是不是很好用呢,有需要的小伙伴參考下吧。