1

可能重复:
webkit 中出现意外的令牌非法

我一直在看这个并且看不到问题,它在 jfiddle 中工作 - 只是不在网站上!

<script type="text/javascript">
var fixed = false;

$(document).scroll(function() {
    if( $(this).scrollTop() > 200 ) {
        if( !fixed ) {
            fixed = true;
            $('#menu-scroll').css({position:'fixed', display:'block'});
        }
    } else {
        if( fixed ) {
            fixed = false;
            $('#menu-scroll').css({display:'none'});
        }
    }
});​
</script>

该网站的链接是http://mtro.es/7

4

1 回答 1

-1

也许没有 id 为“menu-scroll”的 html 元素。你检查..

于 2012-08-24T13:52:43.003 回答