我遇到了这个问题:当实际上将鼠标悬停在 h3 元素上时,我想在图像上强制悬停功能
html:
<p><a><img class="size-full wp-image-1236 alignleft" alt="phone-icon-red" src="..." width="50" height="50" /></a></p>
<h3>Contact Us</h3>
CSS:
img:hover{
margin-left: 10px;
}
js:
$('h3').hover(function(e){
e.preventDefault();
$(this).prev('p').find('img').trigger('mouseover');
});
看我的小提琴