定时器函数为什么不加括号 go为什么不加括号
function go(){
if(speed <0 && parseInt(list.style.left) >newleft || speed > 0 && parseInt(list.style.left) < newleft){
list.style.left = parseInt(list.style.left) +speed + 'px';
setTimeout(go,interval);
}else{
list.style.left = parseInt(list.style.left) + offset + 'px';
if(parseInt(list.style.left) > -600){
list.style.left = -3000 + 'px';
}
if(parseInt(list.style.left) < -3000){
list.style.left = -600 + 'px';
}
}
}