下面小編就為大家?guī)硪黄狫S獲取屏幕高度的實現(xiàn)代碼。小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。
主要使用了document對象關(guān)于窗口的一些屬性,這些屬性的主要功能和用法如下。
要得到窗口的尺寸,對于不同的瀏覽器,需要使用不同的屬性和方法:若要檢測窗口的真實尺寸,在netscape下需要使用window的屬性;在ie下需 要深入document內(nèi)部對body進(jìn)行檢測;在dom環(huán)境下,若要得到窗口的尺寸,需要注意根元素的尺寸,而不是元素。
window對象的innerwidth屬性包含當(dāng)前窗口的內(nèi)部寬度。window對象的innerheight屬性包含當(dāng)前窗口的內(nèi)部高度。
document對象的body屬性對應(yīng)html文檔的標(biāo)簽。document對象的documentelement屬性則表示html文檔的根節(jié)點。
document.body.clientheight表示html文檔所在窗口的當(dāng)前高度。document.body. clientwidth表示html文檔所在窗口的當(dāng)前寬度。
js獲取屏幕高度var s = "";
s += " 網(wǎng)頁可見區(qū)域?qū)挘?+ document.body.clientwidth;
s += " 網(wǎng)頁可見區(qū)域高:"+ document.body.clientheight;
s += " 網(wǎng)頁可見區(qū)域?qū)挘?+ document.body.offsetwidth +" (包括邊線和滾動條的寬)";
s += " 網(wǎng)頁可見區(qū)域高:"+ document.body.offsetheight +" (包括邊線的寬)";
s += " 網(wǎng)頁正文全文寬:"+ document.body.scrollwidth;
s += " 網(wǎng)頁正文全文高:"+ document.body.scrollheight;
s += " 網(wǎng)頁被卷去的高:"+ document.body.scrolltop;
s += " 網(wǎng)頁被卷去的左:"+ document.body.scrollleft;
s += " 網(wǎng)頁正文部分上:"+ window.screentop;
s += " 網(wǎng)頁正文部分左:"+ window.screenleft;
s += " 屏幕分辨率的高:"+ window.screen.height;
s += " 屏幕分辨率的寬:"+ window.screen.width;
s += " 屏幕可用工作區(qū)高度:"+ window.screen.availheight;
s += " 屏幕可用工作區(qū)寬度:"+ window.screen.availwidth;
s += " 你的屏幕設(shè)置是 "+ window.screen.colordepth +" 位彩色";
s += " 你的屏幕設(shè)置 "+ window.screen.devicexdpi +" 像素/英寸";
以上這篇JS獲取屏幕高度的實現(xiàn)代碼就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考