动态控制body最小高度

//动态控制body最小高度
var windowHeight = $(document).height() - 164;
$(".body-content").css({ "min-height": windowHeight });
window.onresize = resize;
function resize() {
var windowHeight = document.documentElement.clientHeight - 164;
$(".body-content").css({ "min-height": windowHeight });
}

posted @ 2016-11-30 17:50  白洋花海  阅读(904)  评论(0编辑  收藏  举报