当前位置 : 主页 > 网页制作 > JQuery >

Jquery条件检查是(‘:hover’)不起作用

来源:互联网 收集:自由互联 发布时间:2021-06-15
$('.xx').mouseenter(function(){ if($(this).is(':hover')) alert('d'); else alert('f');}); 这是我的代码,它应该警告’d’,但每次它警告’f’ 什么错误在这里 function idIsHovered(id){ return $("#" + id + ":hover").lengt
$('.xx').mouseenter(function(){
  if($(this).is(':hover'))
    alert('d');
  else
     alert('f');
});

这是我的代码,它应该警告’d’,但每次它警告’f’
什么错误在这里

function idIsHovered(id){
    return $("#" + id + ":hover").length > 0;
}

http://jsfiddle.net/mathheadinclouds/V342R/

网友评论