我有一个 jQuery 函数,当 div 悬停在上面时会显示一个弹出菜单:
<script type="text/javascript">
$('.thumbnail').hover(function (e) {
$(this).children('.pop-up').show()
.css('top', e.pageY + 20)
.css('left', e.pageX + 10)
.appendTo('body');
}, function () {
$(this).children('.pop-up').hide();
});
</script>
第一个功能很好(当光标悬停在 div 上时会显示弹出菜单)但第二个不是(隐藏功能)
有任何想法吗?谢谢
编辑
这是我的 HTML 结构:
<div class="thumbnail">
.........
<div class='pop-up'><h3>"@thumbnail.Forfait.Titre"</h3><p>"@thumbnail.Forfait.Description"</p></div>
</div>