jquery
$(function(){
/*调整窗口自动调整宽度*/
$(window).resize(function(){
var h = $(window).height();
var w = $(window).width();
console.info("窗口高度:" + h + "; 窗口宽度:" + w);
});
});
document.body.clientWidth --> BODY对象宽度
document.body.clientHeight -->
BODY对象高度
document.documentElement.clientWidth --> 可见区域宽度
document.documentElement.clientHeight --> 可见区域高度
$(window).resize(function() {
alert($(window).height());
alert($(window).width());
});