JavaScript Window 瀏覽器物件模型

來源:互聯網
上載者:User

標籤:element   ref   sch   w3cschool   body   圖片   nbsp   innerhtml   https   

一、Window 對象:

      (1)、所有瀏覽器都支援 window 對象,它表示瀏覽器視窗。所有 JavaScript 全域對象、函數以及變數均自動成為 window 對象的成員。

      (2)、全域變數是 window 對象的屬性;全域函數是 window 對象的方法。

二、Window 對象方法和屬性:( https://www.w3cschool.cn/jsref/obj-window.html )

三、Window 尺寸判斷:

      (1)、對於IE9至IE9以上、Chrome、Firefox、Opera 以及 Safari:               

                     window.innerHeight - 瀏覽器視窗的內部高度(包括捲軸)
                     window.innerWidth - 瀏覽器視窗的內部寬度(包括捲軸)

       (2)、對於IE 8、7、6、5:

                     document.documentElement.clientHeight
                     document.documentElement.clientWidth
                     或者
                     document.body.clientHeight
                     document.body.clientWidth

 

//JavaScript確定所有瀏覽器視窗的尺寸:

<div id="demo" style=‘border:1px solid red‘></div>
<script>
        var w=window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth;
        var h=window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;
        x=document.getElementById("demo");
        x.innerHTML="瀏覽器window寬度: " + w + "px"+", 高度: " + h + "px。"
</script>

JavaScript Window 瀏覽器物件模型

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.