通常如果我们在页面的底部,想滚动到页面的顶部,可以在顶部设置一个锚点。
现在有scrollIntoView()这个函数,可以直接跳转过去。
例如:
在页面的顶部设置标签<a id="a1"></a>
然后可以在页面底部这样写<a href="javascript:a1.scrollIntoView()">跳到首页</a>
var str=window.location.href;
if (str.indexOf('#')!=-1)
{
str=str.substring(str.indexOf('#')+1);
document.getElementById(str).scrollIntoView();
}