gpt4 book ai didi

jquery show函数,在一段时间后淡出弹出窗口

转载 作者:行者123 更新时间:2023-12-01 08:26:54 24 4
gpt4 key购买 nike

我使用 jquery show 函数创建的 jquery 弹出窗口在几秒钟内消失,这不是预期的。我希望弹出窗口保留...

我如何告诉 jquery 这样做?

这是我的代码,

jQuery(document).ready(function(){
jQuery('#popuup_div.popup_msg').hide();
$(a.xyz).click(function(e)
{
var height = jQuery('#popuup_div').height();
var width = jQuery('#popuup_div').width();
leftVal=e.pageX-(width/1.5)+"px";
topVal=e.pageY-(height/13)+"px";

jQuery('#popuup_div').css({left:leftVal,top:topVal}).show();
});

jQuery('#image').click(function(e)
{
jQuery('#popuup_div').fadeOut('fast');
});
});

html

<div id='popuup_div' class='popup_msg'>
<div id='image'>
gets the image
</div>
<br>
some message
</div>

css:

.popup_msg{
position:absolute;
z-index:100;
width:700px;
height:250px;
text-align:justify;
color:Black;
font: 14px Verdana, Arial, Helvetica, sans-serif;
background-color:yellow;
}

最佳答案

这段代码:

jQuery('#image').click(function(e)
{
jQuery('#popuup_div').fadeOut('fast');
});

是淡出div的代码。根据您提供的代码,除非您单击图像 div,否则弹出的 div 不会消失。你确定即使你不点击任何东西,div总是会消失吗?您发布的代码中没有任何其他内容会导致弹出窗口消失。

关于jquery show函数,在一段时间后淡出弹出窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3103715/

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