主要功能:
获取浏览器显示区域(可视区域)的高度 : $(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;