asp.net怎么样弹出一个层 2秒后让层隐藏
我主要想让弹出个消息框让它在一定的时间隐藏掉我尝试过让程序睡眠和js的window.setTimeout都失败了请问下各位高手们这个问题怎么解决谢谢了!...
我主要想让弹出个消息框 让它在一定的时间 隐藏掉 我尝试过让程序睡眠和js的window.setTimeout都失败了 请问下各位高手们 这个问题怎么解决 谢谢了!
展开
4个回答
展开全部
简单啊
完整代码:
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
<style type="text/css">
#div
{
position: relative;
width: 250px;
height: 20px;
font-size: 12px;
background: #FCC;
line-height: 20px;
border: 1px #CCC solid;
display: none;
}
</style>
<script language="javascript" type="text/javascript">
function show()
{
document.getElementById("div").style.display = "block";
setTimeout("autoHide()",2000);
}
function autoHide()
{
document.getElementById("div").style.display = "none";
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<a onclick="show()" href="javascript:void(0);" > 弹出层</a>
<div id="div">2秒后我就隐藏了</div>
</div>
</form>
</body>
</html>
完整代码:
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>无标题页</title>
<style type="text/css">
#div
{
position: relative;
width: 250px;
height: 20px;
font-size: 12px;
background: #FCC;
line-height: 20px;
border: 1px #CCC solid;
display: none;
}
</style>
<script language="javascript" type="text/javascript">
function show()
{
document.getElementById("div").style.display = "block";
setTimeout("autoHide()",2000);
}
function autoHide()
{
document.getElementById("div").style.display = "none";
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<a onclick="show()" href="javascript:void(0);" > 弹出层</a>
<div id="div">2秒后我就隐藏了</div>
</div>
</form>
</body>
</html>
展开全部
我以前弄过一个类似的,也是用window.settimeout类似的方法去实现的,不过我用的是setinterval,不是settimeout,但是这个应该不影响。
你说让程序睡眠是什么意思?html的怎么让程序睡眠?这里又没有线程。你之所以失败,可能还是代码哪儿没写对。把代码贴上来看看吧。
你说让程序睡眠是什么意思?html的怎么让程序睡眠?这里又没有线程。你之所以失败,可能还是代码哪儿没写对。把代码贴上来看看吧。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你试一下JQuery的.fadeOut()方法,具体看
http://api.jquery.com/fadeOut/,希望对你有帮助。
http://api.jquery.com/fadeOut/,希望对你有帮助。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
简单
一、引用using System.Threading;(线程命名空间)
二、Thread.Sleep(数字);我记得是毫秒,你应该填2000就可以了
把要显示的层放在这个后面就ok了
一、引用using System.Threading;(线程命名空间)
二、Thread.Sleep(数字);我记得是毫秒,你应该填2000就可以了
把要显示的层放在这个后面就ok了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询