主要使用了document對象關於窗口的一些屬性,這些屬性的主要功能和用法如下。
要得到窗口的尺寸,對於不同的浏覽器,需要使用不同的屬性和方法:若要檢測窗口的真實尺寸,在netscape下需要使用window的屬性;在ie下需 要深入document內部對body進行檢測;在dom環境下,若要得到窗口的尺寸,需要注意根元素的尺寸,而不是元素。
window對象的innerwidth屬性包含當前窗口的內部寬度。window對象的innerheight屬性包含當前窗口的內部高度。
document對象的body屬性對應html文檔的標簽。document對象的documentelement屬性則表示html文檔的根節點。
document.body.clientheight表示html文檔所在窗口的當前高度。document.body. clientwidth表示html文檔所在窗口的當前寬度。
js獲取屏幕高度var s = "";
s += " 網頁可見區域寬:"+ document.body.clientwidth;
s += " 網頁可見區域高:"+ document.body.clientheight;
s += " 網頁可見區域寬:"+ document.body.offsetwidth +" (包括邊線和滾動條的寬)";
s += " 網頁可見區域高:"+ document.body.offsetheight +" (包括邊線的寬)";
s += " 網頁正文全文寬:"+ document.body.scrollwidth;
s += " 網頁正文全文高:"+ document.body.scrollheight;
s += " 網頁被卷去的高:"+ document.body.scrolltop;
s += " 網頁被卷去的左:"+ document.body.scrollleft;
s += " 網頁正文部分上:"+ window.screentop;
s += " 網頁正文部分左:"+ window.screenleft;
s += " 屏幕分辨率的高:"+ window.screen.height;
s += " 屏幕分辨率的寬:"+ window.screen.width;
s += " 屏幕可用工作區高度:"+ window.screen.availheight;
s += " 屏幕可用工作區寬度:"+ window.screen.availwidth;
s += " 你的屏幕設置是 "+ window.screen.colordepth +" 位彩色";
s += " 你的屏幕設置 "+ window.screen.devicexdpi +" 像素/英寸";
以上這篇JS獲取屏幕高度的實現代碼就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持。