2011-11-04 1 views

답변

2

자신의 국기를 설정하십시오.

var mouseOn = 0 
    $("li").mouseenter(function() { 
     if(mouseOn==1) { 
      .... 
     } 
     mouseOn = 1; 
     $(this).effect("bounce", { times: 1 }, 300); 
     $(this).effect("bounce", { times: 1 }, 300); 
    }); 
관련 문제