gpt4 book ai didi

javascript - onmouseout 时弹出窗口消失

转载 作者:行者123 更新时间:2023-12-02 18:29:47 24 4
gpt4 key购买 nike

我有这个脚本:

$(document).ready(function(){
$('.infoLink').hover(function(){
$('.shoutBox').hide();
$(".shoutBox"+$(this).attr("id")+"").toggle();
});

$('.closeLink').click(function(){
$(this).closest(".shoutBox").toggle();
});
});

我需要添加一些内容,以便当访问者停止将鼠标悬停在弹出链接上时弹出窗口就会消失。

弹出链接是一个小“i”按钮:

<a href="javascript:void(0);" class="infoLink rollover" id="box1"><img width="12" height="11" border="0" src="../path/to/randomimage.png" alt="" title="" /></a>

我尝试添加:

$('.infolink').onMouseOut(function(close){
$('.shoutBox').close();
$(".shoutBox"+$(this).attr("id")+"").toggle();
});

类似的东西...但是正如你所知...这不起作用...

这里有人可以帮助我吗?

最佳答案

$('.infoLink').hover(function(){
$('.shoutBox').hide();
$(".shoutBox"+$(this).attr("id")+"").toggle();
}, function() {
$('.shoutBox').close();
$(".shoutBox"+$(this).attr("id")+"").toggle();
});

关于javascript - onmouseout 时弹出窗口消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17918773/

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