Javascript计时事件

时间:2012-04-02 15:55:41

标签: javascript

我想显示消息“你好,你好吗?”使用[JavaScript] [1]进行1分钟。 1分钟后,我希望它消失。你能帮我写代码来产生这个吗?

编辑:我试过这段代码:

以下是我试过的代码......

<html> 
<head> 
<script type="text/javascript"> 
function timeMsg() 
{  
   var t=setTimeout("alertMsg()",3000);
} 
function alertMsg() 
{
    document.write("Hellow"); 
} 
</script> 
</head> 
<body> 
<form> <input type="button" value="Display alert box in 3 seconds" onclick="timeMsg()"/> 
</form> 
</body> 
</html>

3 个答案:

答案 0 :(得分:1)

setTimeout(function() {
    /* hide message logic */
}, 60000);

答案 1 :(得分:0)

使用方法setTimeout:

setTimeout(function() {
// hide your message
}, 60000);

答案 2 :(得分:0)

由于我在其他答案中认为 jQuery 不够,这是我的!

jQuery( window ).delay( 6e+4 ).show(function() {
    /* hide message logic */
});

我当然是在拖钓,.setTimeout会做得很好