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中打开这个页面时,这将是一个错误,当我们评论整个代码时它会没问题,所以请给我建议和帮助找出正确使用此代码的方法....
答案 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'));