作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望能够使用其 id 平滑滚动到特定的 div,但我当前的脚本不正确。谁能看到我的错误在哪里?
这是我的 fiddle 供引用here .
<script>
$(document).ready(function() {
$('a').click(function(){
$('html, body').animate({
scrollTop: $( $.attr(this, 'href') ).offset().top
}, 5000);
return false;
});
});
</script>
谢谢。
最佳答案
无需在jsfiddle中添加script标签。尝试用这个 fiddle 。 http://jsfiddle.net/wn6rv94t/1/已删除 <script></script>
关于javascript - 如何在点击jquery时平滑滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26831272/
我是一名优秀的程序员,十分优秀!