假如不封装,直接如下面所写,if判断写到onclick里为何做不到无限滚动呢?求释疑.谢谢了
prev.onclick=function(){
odiv1.style.left=parseInt(odiv1.style.left)+950+"px";
if(odiv1.style.left>-950){
odiv1.style.left= -3800+'px';
}
}
next.onclick=function(){
odiv1.style.left=parseInt(odiv1.style.left)-950+"px";
if(odiv1.style.left< -3800){
odiv1.style.left= -950+'px';
}
}