//自动调整页面宽度
function changeDivHeight() {
$("#PageBody").css({
"width" : $(window).width() - 120
});
$(".footer-area").css({
"width" : $(window).width() - 120
});
}

window.onresize = function() {
changeDivHeight();
}

  

posted on 2018-12-17 20:46  月-云  阅读(1363)  评论(0编辑  收藏  举报