-6

我如何在一段时间后启动功能,例如:

<script>
function alert()
{

alert("Execute alert after 5 seconds");

}
</script>


alert();

我需要内部函数告诉 5 秒后执行,我该怎么做

在此时间之后,函数必须最终执行

感谢和问候

4

1 回答 1

2

使用 JavaScript 的setTimeout函数。

例如

setTimeout(function(){ alert("Hello World!"); }, 5000)

(参数是函数和执行前的毫秒数)

于 2013-10-01T02:22:01.450 回答