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

JQ与屏幕等高

时间:2015-01-13 12:07:26      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

<script type="text/javascript">
$(function()
{
var h = document.documentElement.clientHeight;//获取页面可见高度
$(".box1").css("height",h);
//当浏览器窗口大小改变时,设置显示内容的高度
window.onresize=function(){
changeDivHeight();
}
function changeDivHeight(){
h = document.documentElement.clientHeight;//获取页面可见高度
$(".box1").css("height",h);
}
})

</script>

JQ与屏幕等高

标签:

原文地址:http://www.cnblogs.com/zmeieasyjob/p/4220651.html

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