gpt4 book ai didi

jquery - 与 jQuery mouseout 事件的混淆

转载 作者:行者123 更新时间:2023-12-03 22:00:54 24 4
gpt4 key购买 nike

我的 HTML:

<div id="parent">
<div id="child">cx</div>
</div>

当我使用 jQuery 时

$('#parent').mouseout(function(){
//something here
});

我想知道为什么当我的鼠标进入子 div 时该函数会触发。我仍在父 div 内。我希望 mouseout 函数仅在我离开父 div 时触发,而不是在我位于任何子 div 上时触发。

http://jsbin.com/esiju/ <<示例

干杯

最佳答案

这就是 mouseleave 事件的用途。

$('#parent').mouseleave(function(){
//something here
});

http://api.jquery.com/mouseleave/

关于jquery - 与 jQuery mouseout 事件的混淆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2575300/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com