此代码:
jQuery('body').animate({scrollTop: target.offset().top}, 300);
适用于Firefox,但不适用于Chrome。
此代码:
jQuery('html').animate({scrollTop: target.offset().top}, 300);
适用于Chrome,但不适用于Firefox。
我还没有在IE中测试过。
跨浏览器的正确方法是什么?如果从上面的片段中不清楚,我的目标是页面上的div,我想慢慢向下滚动到它,所以他们完全按照我想要的那样做...只是不跨浏览器。
答案 0 :(得分:4)
同时指定html
和body
:
$("html,body").animate({scrollTop: target.offset().top}, 300);