2
window.onscroll = function()
{
if( window.XMLHttpRequest ) {
var bodyId=document.getElementById('bodymain');
    if (bodyId.scrollTop > 187) {
    //make some div's position fixed
    } else {
           //make some div's position absolute

    }
}
}

此代码适用于 Chrome,但不适用于 IE9。你能推荐这个代码的跨浏览器版本吗

4

1 回答 1

3
window.onscroll = function() {
    var scrollTop = document.body.scrollTop || document.documentElement.scrollTop;
    if (scrollTop > 187) {
        //make some div's position fixed
    } else {
        //make some div's position absolute
    }
}

小提琴

这应该在 IE7 之后的所有浏览器中都能正常工作。它只是不会在 IE6 中运行,因为它不支持position:fixed.

于 2013-01-01T05:45:47.883 回答