猿问

请问下,我点击#btn1为什么# thepic在 left=-1200px时再点就回到left:0了?

$(document).ready(function() {
    var wwt=document.getElementById('thepic');
    $('#btn1').click(function(){
     if(wwt.style.left>=-2400+'px'){
          $('#thepic').animate({left:'-=600px'});    
     }    
       else{
            $('#thepic').animate({left:"0"});
           }           
});
       $('#btn2').click(function(){
               if(wwt.style.left<0+'px'){
                 $('#thepic').animate({left:'+=600px'});    
            }
                 else{
            $('#thepic').animate({left:"-1800px"})
    }
});
});

司马仲达
浏览 1727回答 1
1回答
随时随地看视频慕课网APP
我要回答