码迷,mamicode.com
首页 > 其他好文 > 详细

如何设置自适应当前浏览器高度的div块

时间:2016-06-19 16:54:08      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

嗯 就是下面这样

<!DOCTYPE html>
<head>
<title>adaptive this page size</title>
<script type="text/javascript">
function adpaHeight()
{
     var bodyHeight = document.documentElement.clientHeight;            //获取当前浏览器宽高
    document.getElementById("t1").style.height = (parseInt(bodyHeight)) + ‘px‘;        //设置当前div宽高
}
window.onload = function(){
    adpaHeight();
}
window.onresize = function(){
     adpaHeight();
}
</script>
<style>
#t1{
    background-color:#ee22cc;
}
#t2{
    background-color:#ccee11;
    height:100px;
    
}
</style>
<body>  
<div id="t1">自适应当前浏览器高度</div>
<div id="t2"></div>
</body>
</html>

这个应该没什么兼容问题哒;

如何设置自适应当前浏览器高度的div块

标签:

原文地址:http://www.cnblogs.com/pangys/p/5598235.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!