$(window).resize(function () { //當瀏覽器大小變化時 alert($(window).height()); //瀏覽器時下窗口可視區域高度 alert($(document).height()); //瀏覽器時下窗口文檔的高度 alert($(document.body).height()); //瀏覽器時下窗口文檔body的高度 alert($(document.body).outerHeight(true)); //瀏覽器時下窗口文檔body的總高度 包括border padding margin });