主要功能:
獲取浏覽器顯示區域(可視區域)的高度 : $(window).height(); 獲取浏覽器顯示區域(可視區域)的寬度 : $(window).width(); 獲取頁面的文檔高度 $(document).height(); 獲取頁面的文檔寬度 : $(document).width(); 浏覽器當前窗口文檔body的高度: $(document.body).height(); 浏覽器當前窗口文檔body的寬度: $(document.body).width(); 獲取滾動條到頂部的垂直高度 (即網頁被卷上去的高度) $(document).scrollTop(); 獲取滾動條到左邊的垂直寬度 : $(document).scrollLeft(); 獲取或設置元素的寬度: $(obj).width(); 獲取或設置元素的高度: $(obj).height(); 某個元素的上邊界到body最頂部的距離:obj.offset().top;(在元素的包含元素不含滾動條的情況下) 某個元素的左邊界到body最左邊的距離:obj.offset().left;(在元素的包含元素不含滾動條的情況下) 返回當前元素的上邊界到它的包含元素的上邊界的偏移量:obj.offset().top(在元素的包含元素含滾動條的情況下) 返回當前元素的左邊界到它的包含元素的左邊界的偏移量:obj.offset().left(在元素的包含元素含滾動條的情況下)
//返回當前頁面高度 function pageHeight(){ if($.browser.msie){ return document.compatMode == "CSS1Compat"? document.documentElement.clientHeight : document.body.clientHeight; }else{ return self.innerHeight; } }; //返回當前頁面寬度 function pageWidth(){ if($.browser.msie){ return document.compatMode == "CSS1Compat"? document.documentElement.clientWidth : document.body.clientWidth; }else{ return self.innerWidth; } };
以下是其它網友的補充:
獲取浏覽器顯示區域的高度 : $(window).height();
獲取浏覽器顯示區域的寬度 :$(window).width();
獲取頁面的文檔高度 :$(document).height();
獲取頁面的文檔寬度 :$(document).width();
獲取滾動條到頂部的垂直高度 :$(document).scrollTop();
獲取滾動條到左邊的垂直寬度 :$(document).scrollLeft();
計算元素位置和偏移量:$(id).offset();
offset方法是一個很有用的方法,它返回包裝集中第一個元素的偏移信息。默認情況下是相對body的偏移信息。結果包含 top和left兩個屬性。
offset(options, results)
options.relativeTo 指定相對計
算偏移位置的祖先元素。這個元素應該是relative或absolute定位。省略則相對body。
options.scroll 是否把
滾動條計算在內,默認TRUE
options.padding 是否把padding計算在內,默認false
options.margin
是否把margin計算在內,默認true
options.border 是否把邊框計算在內,默認true
子頁面控制父頁面:
parent.document.documentElement.scrollTop;
parent.document.documentElement.clientHeight;