简体   繁体   English

滚动到底部,不适用于IE或FF,仅适用于Chrome

[英]Scroll to bottom not working in IE or FF, only Chrome

If you press the "Profile" button in the top right, it will scroll to the bottom of the page in Chrome but not in FF or IE. 如果按右上角的“配置文件”按钮,它将在Chrome中滚动到页面底部,但在FF或IE中不会滚动。 I'm not sure why not. 我不确定为什么不这样做。 Is it because JS is being blocked? 是因为JS被阻止了吗?

   $("#profile").click(function() {
       $('body').animate({
           scrollTop: $(".anchor-point").offset().top
       }, 2000);
   });

http://imdarrien.com/ http://imdarrien.com/

You need to use $('html, body') instead of $('body') : 您需要使用$('html,body')而不是$('body'):

    $("#profile").click(function() {
       $('html, body').animate({
           scrollTop: $(".anchor-point").offset().top
       }, 2000);
   });

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM