Firefox 22.0上的jQuery scrollTop语法错误

时间:2013-07-04 13:51:23

标签: jquery html scrolltop

我尝试从here实现以下js:

$("a[href='#top']").click(function() {
  $("html, body").animate({ scrollTop: 0 }, "slow");
return false;
});

它只会在控制台中产生一个我似乎无法解决的错误。

2 个答案:

答案 0 :(得分:0)

问题在于脚本中的其他位置。添加})后,您的代码工作正常。

$("a[href='#top']").click(function() {
  $("html, body").animate({ scrollTop: 1000 }, "slow");
  return false;
});

答案 1 :(得分:0)

为了修复我必须清除缓存。您可以在Firefox中使用Web开发人员工具栏或在首选项中的Chrome中执行此操作。