javascript擷取網頁寬高方法匯總,javascript擷取匯總
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.clientWidthdocument.body.clientHeight
即可獲得,很簡單,很方便。
而在公司項目當中:
Opera仍然使用
document.body.clientWidthdocument.body.clientHeight
可是IE和FireFox則使用
document.documentElement.clientWidthdocument.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 ==> 0document.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高)
以上所述就是本文的全部內容了,希望大家能夠喜歡。