獲取頁面高度和可見高度

2021-06-18 17:28:05 字數 694 閱讀 3299

document.body.clientwidth ==> body物件寬度

document.body.clientheight ==> body物件高度

document.documentelement.clientwidth ==> 可見區域寬度

document.documentelement.clientheight ==> 可見區域高度

var documentheight = window.parent.document.documentelement.clientheight;//獲取父窗體可見窗體高度

var $parentobj =  $(window.parent.document);//獲取父窗體

var headerheight= $parentobj.find("#header").height();//獲取父窗體的header高度

var middleheight = $parentobj.find("#middle").height();//獲取父窗體的middle高度

//不同螢幕高度的差值判斷

if(documentheight > 1000)else                 

$("#maindiv").height(documentheight-headerheight-middleheight);//正文顯示的高度=窗體可見高度-header高度-middle高度

jq獲取頁面高度 JQuery獲取頁面高度寬度

alert window height 瀏覽器當前視窗可視區域高度 alert document height 瀏覽器當前視窗文件的高度 alert document.body height 瀏覽器當前視窗文件body的高度 alert document.body outerheight true ...

js獲取頁面高度

在我本地測試當中 在ie firefox opera下都可以使用 document.body.clientwidth document.body.clientheight 即可獲得,很簡單,很方便。而在公司專案當中 opera仍然使用 document.body.clientwidth docume...

js獲取頁面高度寬度

關於獲取各種瀏覽器可見視窗大小的一點點研究。在我本地測試當中 在ie firefox opera下都可以使用 document.body.clientwidth document.body.clientheight即可獲得,很簡單,很方便。而在公司專案當中 opera仍然使用 document.bo...