私はこのHTMLを持っています:
<html>
<head>
<title>Mouseenter and Click combined</title>
</head>
<body>
<a id="linkselector" href="#">Click here</a>
</body>
</html>
これは私のjQueryコードです:
jQuery( document ).ready( function($) {
//This is the click event
$('#linkselector').live('click',(function() {
alert('You are clicked!');
}));
//This is the mouseover event
$('#linkselector').live('mouseenter', (function(evt){
$('<div class="popupx"></div>').appendTo(document.body);
$('.popupx').html('<img src="http://' + $(this).data('id') + '.jpg.to/">');
$('.popupx').css({left: evt.pageX+30, top: evt.pageY-15}).show();
$('.popupx').css('border','0');
$(this).live('mouseleave', (function(){
$('.popupx').hide();
}));
}));
});
そして最後に私のCSS:
.popupx{
position:absolute;
width:30px;
height:30px;
}
.popupx img{
width:30px;
height:30px;
}
リンクにカーソルを合わせると、画像が正しく表示されるため、機能します。問題は、それをクリックしても、クリックイベントがトリガーされなくなることです。ただし、mouseenter/hoverメカニズムを削除すると。クリックイベントは正常に機能します。
ユーザーがリンクの上にマウスを置いたときにクリックイベントを発生させるにはどうすればよいですか?おそらく、コードで重要な何かを見逃しています。ヒントをありがとう。
更新:3つのイベントを1つの関数に正常に結合しましたが、何らかの理由でONが機能しないため、引き続きLIVEとIF/elseを使用しています。とにかく、私は以下のロジックでmouseenterとmouseleaveが正しく機能しています。ただし、mouseenterがアクティブになっている場合でも、クリックは機能しません。おそらく、ホバーまたはmouseenterイベントがまだ表示されているときにクリックイベントが発生する方法を見つける必要があります。
$('#linkselector').live('click mouseleave mouseenter',(function(evt) {
if (evt.type === 'click') {
//This is a click event
//This won't fire when the mouseenter or hover is shown
} else if (evt.type === 'mouseenter') {
//This is working nicely
$('<div class="popupx"></div>').appendTo(document.body);
$('.popupx').html('<img src="/image.png">');
$('.popupx').css({left: evt.pageX-60, top: evt.pageY-60}).show();
$('.popupx').css('border','0');
} else if (evt.type === 'mouseleave') {
//This is also working nicely
$('.popupx').remove();
}
}));