js funciton總結

來源:互聯網
上載者:User

標籤:ready   doc   false   var   color   isp   ack   標題   ref   

1.視窗每個一段時間載入 window.location.reload() 或者加上標籤<meta http-equiv="refresh" content="1">代表一秒自動重新整理,用在一些即時顯示的網站比如股票等。

2.前進和後退,window.history.forward() window.history.back()

3.若干秒後自動關閉,設定一個flag,然後body上加個事件,用來改變這個flag,如果事件觸發重設flag

var willClose = true;function clickBody(){      willClose = false;    }setInrerval(function(){       if(willClose){window.close()}else{willClose = true}},10000)    
View Code

4.修改網頁標題, document.title = value.

5.動態載入js,

function(){     var theHead = document.getElementByTagName(‘head‘).item(0);     var myScript = document.createElement(‘script‘);     myScript.src = ‘‘     myScript.type = ‘text/javascript‘     myScript.defer = true;//設定載入完成之後在解析執行}
View Code

6.判斷頁面是否載入完畢,window.onload但是網頁載入完畢包括的是所以的都載入完畢,但是我們可能需要文檔載入完畢做操作,那麼就要用document的onreadystatechange監聽

 document.onreadystatechange = myOnload;    function myOnload(){        if(document.readyState == ‘complete‘){            alert(‘文檔載入完畢‘)        }    }
View Code

 

js funciton總結

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.