点击滚动到指定元素位置
Posted wangyongx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了点击滚动到指定元素位置相关的知识,希望对你有一定的参考价值。
$(document).ready(function (){ $("#scroll").click(function (){ $(‘html, body‘).animate({ scrollTop: $("#div").offset().top }, 500); }); });
使用scrollTop方法,加上一点延时动画(animate)
以上是关于点击滚动到指定元素位置的主要内容,如果未能解决你的问题,请参考以下文章
html js点击按钮滚动跳转定位到页面指定位置(DIV)的方法代码