我在以下方面需要一些帮助:我的身体中放置了一张具有悬停功能的图像
<div id="wrapper">
<img style="position: absolute;" src="img/image.png" name="man" width="150" id="man_1" />
</div>
$("#man_1").hover(function () {
$('#wrapper').append('<img id="hoverimg" src="bla.png">');
console.log("enter mouser");
},function () {
$('#hoverimg').remove();
console.log("leave mouse");
});
正如您在将图像悬停时看到的那样,它会附加另一个图像,其顶部和左侧值与#man_1
. 问题是,当我离开鼠标时,删除不会触发,因为鼠标实际上是在新的 hoverimg
希望你明白我的意思!谢谢