回到顶部,哪儿出错了???
window.onload=function(){
var Back=document.getElementById("top");
var timer=null;
var Top=true;
window.onscroll=function(){
if(!Top){
clearInterval(timer);
}s
Top=false;
};
Back.onclick=function(){
timer=setInterval(function(){
var Top=document.documentElement.scrollTop||document.body.scrollTop;
var Speed=Math.floor(-Top/3);
document.documentElement.scrollTop=document.body.scrollTop=Top+Speed;
Top=true;
if(Top==0){
clearInterval(timer);
}
},30);
}
};
不知道哪里错了,在浏览器预览时候,不能回到顶部,点击一次,滚动条只移动一小段距离