...
console.log window .height 瀏覽器當前窗口可視區域高度 console.log document .height 瀏覽器當前窗口文檔的高度 console.log document.body .height 瀏覽器當前窗口文檔body的高度 console.log document.body .outerHeight true 瀏覽器當前窗口文檔body的總高度 包括b ...
2017-11-24 19:38 0 4304 推薦指數:
...
javascript IE中:document.body.clientWidth ==> BODY對象寬度document.body.clientHeight ==> BODY對象高度document.documentElement.clientWidth ==> 可見區域寬度 ...
...
...
原生js Jquery ...
1、window.screen.height window.screen.height:設備顯示屏的高度 (1)分辨率為1080px的顯示屏 (2)手機屏 2、window.screen.availHeight 屏幕的可用高度 (1)分辨率為1080px的顯示屏 ...
window 對象的公開標准,不過所有瀏覽器都支持該對象。使用jQuery可以這樣獲取window的寬高: ...
$(window).height(); //瀏覽器時下窗口可視區域高度 $(document).height(); //瀏覽器時下窗口文檔的高度 $(document.body).height();//瀏覽器時下窗口文檔body的高度 $(document.body).outerHeight ...