问题是您在尝试单击链接时留下了 img-tag。我建议包装所有内容并在此包装上调用悬停。
这是一个工作小提琴:http: //jsfiddle.net/2wrjG/2/
$('.wrapper').hover(function (e) {
e.preventDefault();
e.stopPropagation();
$(this).children('a').show('fast');
},
function (e) {
e.preventDefault();
e.stopPropagation();
$(this).children('a').hide('fast');
});
HTML部分:
<div class="wrapper">
<img class="domaininfo" src="http://domeinwinkel.sitestatus.nl/gfx/itje.png">
<a class="domain-info-window" id="domain-info-window-2" href="#">
Is deze domeinnaam bij een andere provider geregistreerd maar wil je profiteren van de voordelen van Domeinwinkel? Verhuizen naar Domeinwinkel is snel geregeld!
</a>
</div>
CSS:
.domaininfo {
position: relative;
top: 0px;
left: 0px;
}