Jquery跳到页面指定位置的方法_jquery
时间:2021-07-01 10:21:17
帮助过:9人阅读
offset() (包含top left)
代码如下:
height()
scrollTop
$("body").scrollTop(**);
原理是修改页面的scrollTop。
jquery动态效果:animate()
代码如下:
$("html,body").animate({ scrollTop: **}, 500);
$("html,body").animate({ scrollTop: $().offset().top-$().height() }, 500);