本篇文章為大家帶來了關於javascript的相關知識,其中主要介紹了window.screen對象應用的相關問題,window.screen 對象包含有關用戶屏幕的信息,下面一起來看一下,希望對大家有幫助。
【相關推薦:javascript影片教學、web前端】
##Window 物件所有瀏覽器都支援window 物件。它表示瀏覽器視窗。 所有 JavaScript 全域物件、函數、變數均自動成為 window 物件的成員。 全域變數是 window 物件的屬性。 全域函數是 window 物件的方法。 甚至HTML DOM 的document 也是window 物件的屬性之一:window.document.getElementById("header");與此相同:
document.getElementById("header");
Window 尺寸
有三種方法能夠確定瀏覽器視窗的尺寸(瀏覽器的視口,不包括工具列和捲軸)。 對於Internet Explorer、Chrome、Firefox、Opera 以及Safari:window.innerHeight - 瀏覽器視窗的內部高度window.innerWidth - 瀏覽器視窗的內部寬度對於Internet Explorer 8、7、6、5:document.documentElement.clientHeight document.documentElement.clientWidth或
document.body.clientHeight document.body.clientWidth實用的JavaScript 方案(涵蓋所有瀏覽器):實例
var w=window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth; var h=window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight;此範例顯示瀏覽器視窗的高度和寬度:(不包括工具列/捲軸)Window Screenwindow.screen 物件包含有關使用者螢幕的資訊。 window.screen物件在寫字時可以不使用 window 這個前綴。 一些屬性:
screen.availWidth - 可用的螢幕寬度
實例
傳回您的螢幕的可用寬度:
<script> document.write("可用宽度: " + screen.availWidth); </script>
以上程式碼輸出為:
Window Screen 可用高度screen.availHeight 屬性傳回訪客螢幕的高度,以像素計,減去介面特性,例如視窗任務列。
實例
傳回您的螢幕的可用高度:
<script> document.write("可用高度: " + screen.availHeight); </script>
以上程式碼將輸出:
【相關推薦:
javascript影片教學、web前端】
以上是簡單了解window.screen物件應用的詳細內容。更多資訊請關注PHP中文網其他相關文章!