$('body')。css('overflow-y','auto')在Internet Explorer上不起作用

时间:2011-04-24 18:26:59

标签: jquery css

我正在尝试根据窗口高度设置不同的浏览器行为。 我想要的是 如果用户在上网本上,我的脚本只会将css overflow-y激活为'auto',所以如果内容大于屏幕,用户可以看到所有内容。 如果用户在大屏幕上,我想隐藏溢出,只需要我的主div与overflow ='auto',所以页脚可以在屏幕的底部,但如果大于屏幕,内容也可以被viwed。

发布基本代码,它可以在Mac上的大屏幕上运行,但在Internet Explorer上它不会在大屏幕或小屏幕上...

该怎么办?

提前感谢您的帮助

CSS

html, body {
    min-width: 600px;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
#header {
    position:relative;  /* IE7 overflow bug */
    clear:both;
    float:left;
    width:100%;
    height: 200px;
    overflow: hidden;
}
#main {
    position:relative;  /* IE7 overflow bug */
    clear:both;
    float:left;
    width:100%;
    overflow-x: hidden;
}
#footer {
    position:relative;  /* IE7 overflow bug */
    clear:both;
    float:left;
    width:100%;
    height: 100px;
    overflow: hidden;
}

的jQuery

if( typeof( window.innerWidth ) == 'number' ) {
    // No-IE
    var screen_height = window.innerHeight;
} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6 +
    var screen_height = document.documentElement.clientHeight;
} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4
    var screen_height = document.body.clientHeight;
}

var header_height = $('#header').height();
var footer_height = $('#footer').height();
var main_height = screen_height - header_height - footer_height;
//
if (navigator.userAgent.toLowerCase().search("iphone") > -1 || navigator.userAgent.toLowerCase().search("ipod") > -1) {
    $('body').css('overflow-y', 'auto');
} else {
    if(screen_height > 550) {
        $('#main').css('height', main_height + 'px');
$('#main').css('overflow-y', 'auto');
    } else {
        $('html, body').css('overflow-y', 'auto');
    }
}

2 个答案:

答案 0 :(得分:38)

$('html, body').css('overflowY', 'auto'); 

解决了这个问题。

答案 1 :(得分:8)

尝试使用overflowY

进行设置
$('body').css('overflowY', 'auto');

使用JavaScript设置时,属性名称中的破折号通常不起作用,尤其是在IE中。

希望有效。