我想引發另一元素的懸停:通過懸停,通過懸停的元素,像這樣觸發另一個元素的懸停
$(document).ready(function() {
$('.quarter h3').mouseenter(function() {
$(this).next().trigger('mouseenter');
});
});
HTML是:
<div class="quarter grow">
<a href="#">
<h3><span>titel 1</span></h3>
<img src="http://lorempixel.com/200/230/people/1" alt="">
</a>
</div>
在小提琴看看:http://jsfiddle.net/KkYGC/
你不能,因爲據我所知,使用JavaScript來觸發CSS':hover'僞類。您需要使用jQuery在'mouseenter' /'mouseleave'上添加/刪除類,而不是我想。 – 2013-04-24 10:14:06