使用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
相关文章
jQuery给div,Span, a ,button, radio 赋值与取值
这篇文章主要介绍了jQuery给div,Span, a ,button, radio 赋值与取值的相关资料,非常不错,具有参考借鉴价值,需要的朋友可以参考下2016-06-06


最新评论