2016-08-17 2 views

答えて

1

を使用すると、次の方法で上記のmouseentermouseleave instedを使用することができ、この

$cellButtonGroup.hover(function() { 
    //your code here 
}); 

か、他を試してみてください。

第一の方法

$cellButtonGroup.mouseenter(function() { 
     //your code here 
    }); 

$cellButtonGroup.mouseleve(function() { 
     //revise your code here [ex: if your add some class in mouseenter, remove that in here] 
    }); 

第二の方法

$cellButtonGroup.mouseenter(function(){ 
     $("your selector").addClass("thisIsanExample", function(){ 
     $("you selector").removeClass("thisIsanExample"); 
    }) 

}); 
関連する問題