Chrome会出现问题

时间:2012-11-21 10:41:57

标签: jquery google-chrome scrollto

您的导航菜单包含两个导航箭头Prev和Next。这在除Chrome之外的每个浏览器(Firefox,IE,Opera,Safari)中都能正常工作。按下按钮时,它甚至不会收到错误消息。

有人可以看看按钮的代码。我错过了什么吗?

谢谢!

function scroll(direction) {        
    var scroll, i, positions = [], here = $(window).scrollTop(), collection = $('.box'), duration = 750, easing = "easeOutExpo";

    collection.each(function() {
        positions.push(parseInt($(this).offset()['top'], 10));
    });

    for( i = 0; i < positions.length; i++ ) {
        if( direction == 'next' && positions[i] > here ) { 
            scroll = collection.get(i);
            break;
        }
        if( direction == 'prev' && i > 0 && positions[i] >= here ) { 
            scroll = collection.get(i-1); 
            break;
        }
    }

    if(scroll) {
        $.scrollTo( scroll, { duration: duration, easing: easing });
    }

    return false;
}

$("a#prev, a#next").click(function() {
    return scroll($(this).prop( 'id' ));
});

1 个答案:

答案 0 :(得分:0)

当我将jQuery版本从1.8.2降级到1.6.2

时,问题得到了解决