<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>自動(dòng)增長(zhǎng)計(jì)時(shí)器</title> <script type="text/javascript"> var atime; function clock(){ var time=new Date(); atime=time.getHours()+":"+time.getMinutes()+":"+time.getSeconds(); document.getElementById("clock").value = atime; } setInterval(clock,1000); </script> </head> <body> <form> <input type="text" id="clock" size="50" style="background:#000;color:#00ff00;width:55px"; /> </form> </body> </html>
效果:
顯示當(dāng)前時(shí)間,自動(dòng)增長(zhǎng)
添加按鈕的計(jì)時(shí)器(用于開(kāi)始和暫停)
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>計(jì)時(shí)器</title> <script type="text/javascript"> var num=0; var i; function startCount(){ document.getElementById('count').value=num; num=num+1; i=setTimeout("startCount()",1000); } function stopCount(){ clearTimeout(i); } </script> </head> <body> <form> <input type="text" id="count" /> <input type="button" value="Start" onclick="startCount()"/> <input type="button" value="Stop" onclick="stopCount()" /> </form> </body> </html>
效果:
點(diǎn)擊開(kāi)始按鈕,從0計(jì)數(shù),一秒加1。點(diǎn)擊按鈕停止,保持當(dāng)前狀態(tài)。
總結(jié):
1、setInterval(代碼,交互時(shí)間);
參數(shù):代碼:可以是函數(shù)名或代碼串;交互時(shí)間:設(shè)置交互時(shí)間
clearInterval(id_from_setInterval);
參數(shù):由setInterval() 返回的 ID 值。
2、setTimeout(代碼,延遲時(shí)間);
參數(shù):代碼: 可以是函數(shù)名或代碼串;延遲時(shí)間:設(shè)置延遲時(shí)間
clearTimeout(id_from_setTimeout);
參數(shù):由setTimeout()返回的ID值。
聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com