我尝试使用以下代码自动向下滚动页面
$( document ).ready(function() {
$("html, body").animate({ scrollTop: $(document).height()-$(window).height() });
});
我将此代码放在页面的末尾,它会向下滚动动画并突然跳回到顶部。问题出在jQuery Mobile插件上,如果我禁用jQuery Mobile插件,它就可以了。
页面链接:http://20percents.com/privacy/
另外,我在其他页面尝试过类似动作网址#id的内容,并且会出现同样的问题,它会跳下来并再次跳起来。
更新1
我还使用了以下代码,但仍然没有使用
window.onload = function () {
window.scrollTo(0, 0);
};