gpt4 book ai didi

jquery状态框弹出,过一会就隐藏

转载 作者:行者123 更新时间:2023-12-01 07:28:44 27 4
gpt4 key购买 nike

我尝试使用jquery开发一个状态框,所以我有一个按钮,当单击按钮时,状态框会弹出以显示“按钮被单击”之类的消息,并在10秒后消失,但我是不知道该怎么做。我认为代码可能是这样的:

  <input type="button" id="status" value = "show status box"/>

<script>
$("#status").click(function(){
//not sure what should be inside?
}
</script>

最佳答案

类似这样的事情吗?

html

<button id="status">show status box</button>
<div id="statusmessage"></div>

CSS

#statusmessage{
position:fixed;
bottom:0;
padding:0 5px;
line-height:25px;
background-color:#eeee99;
margin-bottom:-25px;
font-weight:bold;
left:0;
right:0;
}

jquery

$("#status").click(function() {
$('#statusmessage').text('#status button was clicked..').animate({'margin-bottom':0},200);
setTimeout( function(){
$('#statusmessage').animate({'margin-bottom':-25},200);
}, 5*1000);
});

演示地址:http://jsfiddle.net/s3fcy/1/

关于jquery状态框弹出,过一会就隐藏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7828251/

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