如何使用浏览器窗口的大小?

时间:2014-12-30 06:00:12

标签: javascript jquery html css firefox

var wh = $(document.documentElement.clientHeight).height();
var tH = $('.a_Top').height();
var bH = $('.a_BottomBar_b').height();
$('.a_ContentOuter').css('min-height',(wh)+'px');
$('.a_ContentInner').css('min-height',(wh-(tH+bH+29))+'px');

我正在函数中编写这段代码,但是当我在Firefox中打开这个页面时,这将是一个错误,当我们评论整个代码时它会没问题,所以请给我建议和帮助找出正确使用此代码的方法....

1 个答案:

答案 0 :(得分:3)

添加$(窗口).height();

var wh = $(window).height();
var tH = $('.a_Top').height();
var bH = $('.a_BottomBar_b').height();
$('.a_ContentOuter').css('min-height',(wh)+'px');
$('.a_ContentInner').css('min-height',(wh-(tH+bH+29))+'px');
alert($('.a_ContentOuter').css('min-height'));