1,javascript获取屏幕宽度与高度
相关链接:js获取屏幕宽度高度 js中window.open用法
2,jquery获取屏幕宽度与高度
$(document).ready(function(){
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
})