獲取瀏覽器顯示區域的高度 :
$(window).height();
獲取瀏覽器顯示區域的寬度 :
$(window).width();
獲取頁面的文件高度 :
$(document).height();
獲取頁面的文件寬度 :
$(document).width();
獲取滾動條到頂部的垂直高度 :
$(window).scrolltop();
獲取滾動條到左邊的平移寬度 :
$(window).scrollleft();
計算元素位置和偏移量:
$(id).offset();
offset方法是乙個很有用的方法,它返回包裝集中第乙個元素的偏移資訊。預設情況下是相對body的偏移資訊。結果包含 top和left兩個屬性。
jquery獲取各種高度
alert window height 瀏覽器時下視窗可視區域高度 alert document height 瀏覽器時下視窗文件的高度 alert document.body height 瀏覽器時下視窗文件body的高度 alert document.body outerheight true ...
jquery獲取高度
div id height 獲得的是該div本身的高度,不包含padding,margin,border div id outerheight 包含該div本身的高度,padding上下的高度,以及border上下的高度 不包含margin的高度 div id outerheight true 包含...
jquery獲取螢幕高度
jquery獲取螢幕高度 window height 瀏覽器當前視窗可視區域高度 document height 瀏覽器當前視窗文件的高度 document.body height 瀏覽器當前視窗文件body的高度 document.body outerheight true 瀏覽器當前視窗文件bo...