瀏覽器對象
阿新 • • 發佈:2019-01-30
計時器 tor 時間 inpu document sta alert scrip 圖片
1、window對象
計時器
setInterval(代碼,交互時間) 每隔指定時間執行代碼
setInterval("lock()",1000);
setInterval(lock,1000); //lock是函數 ,時間單位是毫秒 1s=1000ms
clearInterval() 取消setInterval()設置的交互時間
括號內為setInterval()返回的ID值
i=setInterval(lock,100);
onclick="clearInterval(i)";
setTimeout(代碼,延遲時間) 延遲時間執行一次代碼 以毫秒為單位
setTimeout("alert("hello")",3000);
計時器
<script>
var num=0,i;
function timedCount(){
document.getElementById(‘txt‘).value=num; num=num+1; i=setTimeout(timedCount,1000); } setTimeout(timedCount,1000);
</script>
<body>
<input type="text" id="txt" />
<input type="button" value="Start" onClick="numCount()" />
</body>
clearTimeout() 用於停止計時器
2、History 對象 記錄用戶曾經瀏覽過的頁面
window.history.[屬性|方法]
3、location 對象 用於獲取或設置窗體的URL,並且可以用於解析URL。
location.[屬性|方法]
3、navigator 對象 通常用於檢測瀏覽器與操作系統的版本
4、screen 對象
window.screen.屬性
瀏覽器對象