0

我试图#two在以下之间滚动时进行修复:

($(this).scrollTop() > 1310 && $(this).scrollTop() <9000 )

这是我尝试过的:

$(window).scroll(function () {
                if ($(this).scrollTop() > 1310 && $(this).scrollTop() <9000 ) {
                    $('#two').css({positon:'fixed',bottom:'100'});
                } else {
                    $('#two').css({positon:'absolute'});
                }
            });

但这似乎不起作用..帮助?

4

1 回答 1

1

试试{position:'fixed', bottom:'100px'}。如果您仔细观察,您会发现其中{positon:'fixed',bottom:'100'}包含拼写错误。

于 2013-07-23T22:00:53.613 回答