如何在悬停时运行此功能?

时间:2016-08-17 14:51:45

标签: jquery

如何在悬停时运行此功能?

$cellButtonGroup.on( 'click', '.button', function() {
  var index = $(this).index();
  $carousel.flickity( 'select', index );
});

这不起作用:

$cellButtonGroup.on( 'hover',

1 个答案:

答案 0 :(得分:1)

试试这个

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

或者您可以通过以下方式使用上面提到的mouseentermouseleave

第一路

$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");
    })

});