js獲取元素的滾動高度,和距離頂部的高度

2021-10-04 03:57:33 字數 3527 閱讀 1281

獲取瀏覽器顯示區域(可視區域)的高度 :

$(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(在元素的包含元素含滾動條的情況下)

js:

網頁被卷起來的高度/寬度(即瀏覽器滾動條滾動後隱藏的頁面內容高度)

document.documentelement.scrolltop //firefox

document.documentelement.scrollleft //firefox

document.body.scrolltop //ie

document.body.scrollleft //ie

等同於:

$(window).scrolltop() 

$(window).scrollleft()

網頁工作區域的高度和寬度  

document.documentelement.clientheight// ie firefox
等同於:

$(window).height()

元素距離文件頂端和左邊的偏移值  

obj.offsettop //ie firefox

obj.offsetleft //ie firefox

等同於:

obj.offset().top

obj.offset().left

簡單例項(監控元素在可見檢視中)

效果:當元素出現在可見區域時,改變其css樣式(背景色變紅);

你好,china!

你好,china!

你好,china!

你好,china!

你好,china!

你好,china!

你好,china!

你好,china!

你好,china!

你好,china!

你好,china!

你好,china!

你好,china!

你好,china!

你好,china!

你好,china!

你好,china!

你好,china!

你好,china!

你好,china!

你好,china!

你好,china!

懶載入實現

var bodyscrollheight = document.body.scrolltop || document.documentelement.scrolltop;// body滾動高度

var windowheight = window.innerheight;// 視窗高度

var imgs = document.getelementsbyclassname('lazyloadimg');

for (var i =0; i < imgs.length; i++)

}

}

最後再補充兩個常見的滾動判斷:

1.頁面滾動離開首屏(這時可顯示回到頂部的按鈕):document.body.scrolltop > window.innerheight

js獲取元素滾動高度,body高度

獲取瀏覽器顯示區域 可視區域 的高度 window height 獲取瀏覽器顯示區域 可視區域 的寬度 window width 獲取頁面的文件高度 document height 獲取頁面的文件寬度 document width 瀏覽器當前視窗文件body的高度 document.body hei...

js獲取元素的高度

包括元素的滾動條,不包括邊框,值為string,帶單位px 使用style.height最坑的就是height必須使用行內樣式,使用內聯式和外嵌式是不行的 height在標籤中設定,使用style.height是獲取不到值的 lang en charset utf 8 titletitle div ...

jquery如何獲取元素的滾動高度

獲取瀏覽器顯示區域 可視區域 的高度 window height 獲取瀏覽器顯示區域 可視區域 的寬度 window width 獲取頁面的文件高度 document height 獲取頁面的文件寬度 document width 瀏覽器當前視窗文件body的高度 document.body hei...