当浏览器窗口大小改变时事件

<script type="text/javascript">  

            window.onload=function(){  

                 changeDivHeight();  

            }  

    //当浏览器窗口大小改变时,设置显示内容的高度  

            window.onresize=function(){  

                 changeDivHeight();  

            }  

    function changeDivHeight(){               

      var h = document.documentElement.clientHeight;//获取页面可见高度  

                document.getElementById("div_ov_y").style.height=h-140+"px";  

    }

<script>

posted @ 2015-08-26 00:01  前端[色色]  阅读(3748)  评论(0编辑  收藏  举报