document.body.clientWidth - 網頁可見區域寬
document.body.clientHeight - 網頁可見區域高
document.body.offsetWidth - 網頁可見區域寬,包括邊線和滾動條的寬
document.body.offsetHeight - 網頁可見區域高,包括邊線和滾動條的高[FF,chrom下是整個頁面高,IE opera 下正常]
document.body.scrollWidth - 網頁總寬
document.body.scrollHeight - 網頁總高
document.body.scrollTop - 有滾動條的時候,向下拖動滾動條,上方不顯示的那部分高度
document.body.scrollLeft - 同上
window.innerHeight - 浏覽器窗口的內部高度
window.innerWidth - 浏覽器窗口的內部寬度
window.screenTop - 網頁正文部分上[網頁文檔的最上方距離屏幕最上方的距離,但FF不支持,Chrom,IE,Opera表現都不同,慎用]
window.screenLeft - 網頁正文部分左[網頁文檔的最左方距離屏幕最左方的距離,但FF不支持,Chrom,IE,Opera表現都不同,慎用]
window.screen.height - 屏幕分辨率的高度
window.screen.width - 屏幕分辨率的寬度
window.screen.availHeight - 可用工作區高度[整個屏幕但不包括下方任務欄]
window.screen.availWidth - 可用工作區寬度[整個屏幕的寬度]
window.screen.clorDepth - 屏幕色彩,常用的16,32位等
window.screen.deviceXDPI - 屏幕像素/英寸【IE支持,其它不支持】
JavaScript 獲取頁面寬高的方法
<script> function getInfo() { 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 += " 網頁被卷去的高(ff):"+ document.body.scrollTop; s += " 網頁被卷去的高(ie):"+ document.documentElement.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 +" 像素/英寸"; //alert (s); } getInfo(); </script>
在我本地測試當中:
在IE、FireFox、Opera下都可以使用
document.body.clientWidth document.body.clientHeight
即可獲得,很簡單,很方便。
而在公司項目當中:
Opera仍然使用
document.body.clientWidth document.body.clientHeight
可是IE和FireFox則使用
document.documentElement.clientWidth document.documentElement.clientHeight
原來是W3C的標准在作怪啊
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
如果在頁面中添加這行標記的話
在IE中:
document.body.clientWidth ==> BODY對象寬度 document.body.clientHeight ==> BODY對象高度 document.documentElement.clientWidth ==> 可見區域寬度 document.documentElement.clientHeight ==> 可見區域高度
在FireFox中:
document.body.clientWidth ==> BODY對象寬度 document.body.clientHeight ==> BODY對象高度 document.documentElement.clientWidth ==> 可見區域寬度 document.documentElement.clientHeight ==> 可見區域高度
在Opera中:
document.body.clientWidth ==> 可見區域寬度 document.body.clientHeight ==> 可見區域高度 document.documentElement.clientWidth ==> 頁面對象寬度(即BODY對象寬度加上Margin寬) document.documentElement.clientHeight ==> 頁面對象高度(即BODY對象高度加上Margin高)
而如果沒有定義W3C的標准,則
IE為:
document.documentElement.clientWidth ==> 0 document.documentElement.clientHeight ==> 0
FireFox為:
復制代碼 代碼如下:document.documentElement.clientWidth ==> 頁面對象寬度(即BODY對象寬度加上Margin寬)
document.documentElement.clientHeight ==> 頁面對象高度(即BODY對象高度加上Margin高)
Opera為:
復制代碼 代碼如下:document.documentElement.clientWidth ==> 頁面對象寬度(即BODY對象寬度加上Margin寬)
document.documentElement.clientHeight ==> 頁面對象高度(即BODY對象高度加上Margin高)
以上所述就是本文的全部內容了,希望大家能夠喜歡。