检查元素是否悬停在上面

时间:2015-03-08 17:52:16

标签: javascript jquery html

我想检查一个元素是否正在盘旋。我收到这个错误:

Syntax error, unrecognized expression: unsupported pseudo: hover

当我使用此代码时:

 $('.class').blur(function(){
    if(!$(this).is(':hover')){
       //element not being hovered over
    }
 });

我也尝试过这个:

 $('.class').blur(function(){
    if($(this+":hover").length === 0){ 
       //element not being hovered over
    }
 });

这也行不通。有没有其他方法可以做到这一点。谢谢。

2 个答案:

答案 0 :(得分:1)

$(".class").mouseover(function(){   
    $(this).attr('checked',true);   
    });  
});

答案 1 :(得分:0)

jQuery内置了此功能。 See documentation on .hover()

$(".class").hover(
  function() {
    // item is being hovered over
    $(this).addClass('hover');
  }, function() {
    // item is no longer being hovered over
    $(this).removeClass('hover');
  }
);