如何将参数传递给 setTimeout() 回调?


要将参数传递给 setTimeout() 回调,请使用以下语法 −

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

以下是参数 −

  • 函数名 − 要执行的函数的函数名。
  • 毫秒数 − 毫秒数。
  • arg1、arg2、arg3 − 这些是传递给函数的参数。

实例

你可以尝试运行以下代码,将参数传递给 setTimeout() 回调

在线演示

<!DOCTYPE html>
<html>
   <body>
      <button onclick="timeFunction()">Submit</button>
      <script>
         function timeFunction() {
            setTimeout(function(){ alert("After 5 seconds!"); }, 5000);
         }
      </script>
   <p>Click the above button and wait for 5 seconds.</p>
   </body>
</html>

更新于:2020 年 6 月 12 日

2K+ 浏览

开启您的 职业 生涯

通过完成该课程获得认证

立即开始
广告