当前位置: 编程技术>WEB前端
Jquery跳到页面指定位置的方法
来源: 互联网 发布时间:2014-08-25
本文导语: offset() (包含top left) 代码如下: height() scrollTop $("body").scrollTop(**); 原理是修改页面的scrollTop。 jquery动态效果:animate() 代码如下: $("html,body").animate({ scrollTop: **}, 500); $("html,body").animate({ scrollTop: $().offset().top-$().height() }, 500); ...
offset() (包含top left)
height()
scrollTop
$("body").scrollTop(**);
原理是修改页面的scrollTop。
jquery动态效果:animate()
$("html,body").animate({ scrollTop: **}, 500);
$("html,body").animate({ scrollTop: $().offset().top-$().height() }, 500);
代码如下:
height()
scrollTop
$("body").scrollTop(**);
原理是修改页面的scrollTop。
jquery动态效果:animate()
代码如下:
$("html,body").animate({ scrollTop: **}, 500);
$("html,body").animate({ scrollTop: $().offset().top-$().height() }, 500);