我这个代码哪里不对啊,怎么显示不出来
window.onload=function(){
var obtn=document.getElementById('btn');
var timer = null;
obtn.onclick=function(){
timer = setinterval(function(){
var ostop = document.documentElement.scrollTop || document.body.scrollTop;
document.documentElement.scrolltop = document.body.scrollTop -=200 ;
},30);
}
}