萬盛學電腦網

 萬盛學電腦網 >> 腳本專題 >> javascript >> 使用jquery中height()方法獲取各種高度大全

使用jquery中height()方法獲取各種高度大全

 這篇文章主要介紹了使用jquery中height()方法獲取各種高度大全,比如浏覽器高度、可視窗口高度、文檔高度等,需要的朋友可以參考下

   代碼如下: alert($(window).height()); //浏覽器當前窗口可視區域高度   alert($(document).height()); //浏覽器當前窗口文檔的高度   alert($(document.body).height());//浏覽器當前窗口文檔body的高度   alert($(document.body).outerHeight(true));//浏覽器當前窗口文檔body的總高度 包括border padding margin   alert($(window).width()); //浏覽器當前窗口可視區域寬度   alert($(document).width());//浏覽器當前窗口文檔對象寬度   alert($(document.body).width());//浏覽器當前窗口文檔body的高度   alert($(document.body).outerWidth(true));//浏覽器當前窗口文檔body的總寬度 包括border padding margin    
copyright © 萬盛學電腦網 all rights reserved