参见英文答案 >
Animate scrollTop not working in firefox10个
我有以下代码,在铬工作正常.
我有以下代码,在铬工作正常.
但是,它不适用于Firefox和IE.什么都没发生.
$("body").animate({scrollTop:$(this).offset().top},800);
那么我可以问我应该为firefox和IE写什么?
谢谢.
解决方法
尝试使用
$('body,html').animate({scrollTop:$(this).offset().top},800);
代替
$("body").animate({scrollTop:$(this).offset().top},800);