通过将鼠标悬停在另一个上来触发 :hover 事件

Trigger a :hover event by hovering on an other

我有一个 jQuery 问题;我想通过将鼠标悬停在另一个元素上来触发一个元素上的 :hover 事件,控制台显示错误:

Uncaught RangeError: Maximum call stack size exceeded

这是我的 Javascript 函数:

$(".love").hover(function() { 
    $(".fa-heart").trigger('mouseover'); 
});

这是我的 HTML :

                                   <div class="middle-bar grey-dark"></div>
                                        <ol class="container text-center" id="love-inline">
                                            <li>
                                                <h2 class="love inline" id="LOVE-left">Nos coups de</h2>
                                            </li> 
                                            &nbsp; 
                                            <li>
                                                <h2 class="love inline" id="heart"><i class="fa fa-heart hvr-pulse-grow"></i></h2>
                                            </li>
                                            &nbsp;
                                            <li>
                                                <h2 class="love inline" id="LOVE-right">du moment</h2>
                                            </li>
                                        </ol>
                                    <div class="little-middle-bar grey-dark"></div>
                                <div class="end-bar"></div>

有什么想法吗?

您不能在任何元素中触发鼠标悬停事件。而且您一直在悬停功能内触发鼠标悬停,这就是它抛出 RangeError.

的原因

要解决您的问题,您可以使用简单的 css 规则:

.love:hover .fa-heart:hover {
    color: red;
}

但是看到这个对我来说仍然没有意义。您可以申请:

.fa-heart:hover {
    color: red;
}

触发鼠标悬停事件与真正的鼠标悬停在元素上不同,它不会触发它的:hovered状态。

无论如何,你不需要 javascript,因为简单的 CSS 就足够了:

.love:hover .fa-heart {
    color: red;
}

还要确保 HTML 结构对于 li 元素作为 ol.

的直接子元素有效

ol li {list-style-type: none; text-align: center;}

.love:hover .fa-heart {
    color: red;
}
<link data-require="font-awesome@*" data-semver="4.3.0" rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" />

<ol class="container text-center" id="love-inline">
    <li>
        <h2 class="love inline" id="LOVE-left">Nos coups de</h2> &nbsp;
    </li>
    <li>
        <h2 class="love inline" id="heart"><i class="fa fa-heart hvr-pulse-grow"></i></h2> &nbsp;
    </li>
    <li>
        <h2 class="love inline" id="LOVE-right">du moment</h2>
    </li>
</ol>

您看到的错误是因为您在最初引发事件的元素的子元素中触发了悬停,从而导致递归循环。

一个更好的主意是在父项或子项悬停时单独使用 CSS 来实现此目的:

.love:hover .fa-heart, .fa-heart:hover {
    border: 2px solid #C00;
    /* style as needed ... */ 
}

另请注意,您的 HTML 无效;只有 li 个元素可以是 ol.

的直接后代

您面临此问题是因为您正在递归触发该事件。由于这个无限悬停函数一次又一次地调用..因此堆栈溢出了。

发生这种情况是因为您的 .fa-heart class 在 .love class 中,因此需要父级 class 的悬停事件。

您的问题的解决方案是e.stopPropagation();像这样使用它..

$('.love').hover(function(e) {
    $('.fa-heart').trigger(e.type);
    e.stopPropagation();

});

因为上面的代码也不起作用。我在代码上做了更多工作并找到了正确的解决方案。请检查以下代码以获取解决方案。如果您仍然遇到任何问题,请告诉我。

$('.love').hover(function(e) {
    if(e.target !== this ) {
     return false;   
    } else {
        $('.fa-heart').trigger(e.type);
    }
});

好吧,这有点棘手;我用了 Css 正如你们很多人所说的那样:

.fa-heart:hover, .love:hover .fa-heart {
// css changes
}

但是改变我的html让它只在我悬停在文本或法心上时起作用(因为你所有的回答都使所有div悬停):

<div class="middle-bar grey-dark"></div>
                                            <ol class="container text-center" id="love-inline">
                                                <li class="love inline">
                                                    <h2 class="love inline" id="LOVE-left">Nos coups de</h2>
                                                    &nbsp;<h2 class="love inline" id="heart"><i class="fa fa-heart"></i></h2>&nbsp;
                                                    <h2 class="love inline" id="LOVE-right">du moment</h2>
                                                </li>
                                            </ol>
                                        <div class="little-middle-bar grey-dark"></div>
                                    <div class="end-bar"></div>

感谢您的帮助!