0

我想通过悬停一个元素来触发另一个元素的悬停,如下所示:

$(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/

4

1 回答 1

2

如果我正确理解你的问题,你可以改变

.grow img:hover {

.grow:hover img {
于 2013-04-24T10:23:54.917 回答