我尝试从here实现以下js:
$("a[href='#top']").click(function() {
$("html, body").animate({ scrollTop: 0 }, "slow");
return false;
});
它只会在控制台中产生一个我似乎无法解决的错误。
答案 0 :(得分:0)
问题在于脚本中的其他位置。添加})
后,您的代码工作正常。
$("a[href='#top']").click(function() {
$("html, body").animate({ scrollTop: 1000 }, "slow");
return false;
});
答案 1 :(得分:0)
为了修复我必须清除缓存。您可以在Firefox中使用Web开发人员工具栏或在首选项中的Chrome中执行此操作。