如何使用JavaScript延迟JavaScript函数调用?

要延迟函数调用,请使用setTimeout()function。

setTimeout(functionname, milliseconds, arg1, arg2, arg3...)

以下是参数-

functionname-要执行的功能的功能名称。

毫秒-毫秒数。

arg1,arg2,arg3-这些是传递给函数的参数。

示例

您可以尝试运行以下代码来延迟带有setTimeout()回调的JavaScript函数调用。

<!DOCTYPE html>

<html>

   <body>

      <button onclick="timeFunction()">Submit</button>

      <script>

         function timeFunction() {

            setTimeout(function(){ alert("5秒后!"); }, 5000);

        }

</script>

<p>Click the above button and wait for 5 seconds.</p>

</body>

</html>

以上是 如何使用JavaScript延迟JavaScript函数调用? 的全部内容, 来源链接: utcz.com/z/335221.html

回到顶部