jquery让页面中的模块自适应浏览器高度

//加载时适应浏览器高度
$(document).ready(function() {
//模块尺寸
$('#div_frame_body').css('height', $(window).height());
$('#div_frame_main').css('height', $(window).height() - 110);
$('#div_frame_left').css('height', $(window).height() - 115);
$('#div_frame_right').css('height', $(window).height() - 110);
$('#div_frame_tree').css('height', $(window).height()-5);
$('#div_frame_list').css('height', $(window).height()-5);
$('#frame_left').css('height', $(window).height() - 115);
$('#frame_right').css('height', $(window).height() - 110);
})
//改变窗体大小时适应浏览器高度
$(window).resize(function() {
//模块尺寸
$('#div_frame_body').css('height', $(window).height());
$('#div_frame_main').css('height', $(window).height() - 110);
$('#div_frame_left').css('height', $(window).height() - 115);
$('#div_frame_right').css('height', $(window).height() - 110);
$('#div_frame_tree').css('height', $(window).height());
$('#div_frame_list').css('height', $(window).height());
$('#frame_left').css('height', $(window).height() - 115);
$('#frame_right').css('height', $(window).height() - 110);
});
$('#div_frame_body').css('height', $(window).height());使用juqery函数获取浏览器窗体的高度,后面减去的是已经占用的具体高度

posted @ 2012-03-27 08:32  轻拍水面  阅读(10758)  评论(0)    收藏  举报