我希望能够使用其id平滑滚动到特定div,但我当前的脚本不正确。任何人都可以看到我的错误在哪里?
这是我的小提琴,供参考here。
<script>
$(document).ready(function() {
$('a').click(function(){
$('html, body').animate({
scrollTop: $( $.attr(this, 'href') ).offset().top
}, 5000);
return false;
});
});
</script>
感谢。