标签:time 回调函数 dev head http com title viewport pre
回调函数的定义:一个函数的参数是另一个函数,那么作为参数的函数就是一个回调函数,例如定时器中的参数:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> </body> </html> <script> function a(){} function c(fn){ fn(); //此时fn就是回调函数 } c(a);//调用函数 var timerId=setInterval(function(){},1000);//定时器第第一个参数就是回调函数 </script>
标签:time 回调函数 dev head http com title viewport pre
原文地址:https://www.cnblogs.com/yangxiaohui227/p/10382977.html