div随窗口变化设置高度

window.onscroll = function () { sc(); };
window.onresize = function () { sc(); };
window.onload = function () { sc(); };
function sc() {
    var h = document.documentElement.clientHeight - 80;
    $("#result").css({ height: h });
    $("#result").css("overflow-y", "scroll");
    $("#result").css("overflow-x", "scroll");
}

 

你可能感兴趣的:(div)