alert(screen.height) //1080
alert(screen.width) //1920
window.alert($(window).height()); //浏览器当前窗口可视区域高度
window.alert($(document).height()); //浏览器当前窗口文档的高度
window.alert($(document.body).height());//浏览器当前窗口文档body的高度
window.alert($(document.body).outerHeight(true));//浏览器当前窗口文档body的总高度 包括border padding margin
window.alert($(window).width()); //浏览器当前窗口可视区域宽度
window.alert($(document).width());//浏览器当前窗口文档对象宽度
window.alert($(document.body).width());//浏览器当前窗口文档body的高度
window.alert($(document.body).outerWidth(true));//浏览
———————
作者:偶-木
来源:CSDN
原文:https://blog.csdn.net/u013372487/article/details/49785141
版权声明:本文为博主原创文章,转载请附上博文链接!