用JS来控制 div的高度随浏览器变化而变化

Posted o0孤独夜莺0o

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用JS来控制 div的高度随浏览器变化而变化相关的知识,希望对你有一定的参考价值。

<div id="test" style=" border: solid 1px #f00; "></div>
<script type="text/javascript">
<!--
//作者:凌陈亮www.lingchenliang.com(QQ:57404811)
autodivheight();
function autodivheight(){ //函数:获取尺寸
    //获取浏览器窗口高度
    var winHeight=0;
    if (window.innerHeight)
        winHeight = window.innerHeight;
    else if ((document.body) && (document.body.clientHeight))
        winHeight = document.body.clientHeight;
    //通过深入Document内部对body进行检测,获取浏览器窗口高度
    if (document.documentElement && document.documentElement.clientHeight)
        winHeight = document.documentElement.clientHeight;
    //DIV高度为浏览器窗口的高度
    //document.getElementById("test").style.height= winHeight +"px";
    //DIV高度为浏览器窗口高度的一半
    document.getElementById("test").style.height= winHeight/2 +"px";
}
window.onresize=autodivheight; //浏览器窗口发生变化时同时变化DIV高度
//-->
</script>

 

以上是关于用JS来控制 div的高度随浏览器变化而变化的主要内容,如果未能解决你的问题,请参考以下文章

iframe的高度可以随内容的多少而变化吗

css实现两个div并排等高(一个div高度随另一个高度变化而变化)

css怎么使一个div的高随另一个div的高的变化而变化,还有就是怎么使第三个div的位置随它们的高度而变化。

iframe 高度随引用的页面内容自动变化

子DIV浮动(float)后父DIV高度自动失效解决方案

css Div在页面中纵向固定,不随滚动条滚动,横向随滚动条滚动