1 2 3 4 5 6 7 8 9 10 | $(window).resize(function(){//當瀏覽器大小變化時 console.log('$(window).height(): ', $(window).height()); //瀏覽器時下窗口可視區域高度 console.log('$(document).height(): ', $(document).height()); //瀏覽器時下窗口文檔的高度 console.log('$(document.body).height(): ', $(document.body).height()); //瀏覽器時下窗口文檔body的高度 console.log('$(document.body).outerHeight(true): ', $(document.body).outerHeight(true)); //瀏覽器時下窗口文檔 body 的總高度 包括 border padding margin }); |
$(document.body).outerHeight(true)
透過選擇到 body,透過方法 .outerHeight(true) 計算外圍的高度,參數 true 是會算到 margin 的樣式屬性數值。