码迷,mamicode.com
首页 > Web开发 > 详细

用JS实现一个sleep函数

时间:2020-03-19 15:08:46      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:style   pre   llb   head   http   lan   return   char   cal   

1、sleep函数:

  sleep函数作用是让线程休眠,等到指定时间在重新唤起。

2、ES6实现:

<!DOCTYPE html>
<html lang="zh">

    <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>js sleep函数</title>
    </head>

    <body>
        <script type="text/javascript">
            //方法一
            function sleep1(ms, callback) {
                setTimeout(callback, ms)
            }
            //sleep 1s
            sleep1(1000, () => {
                console.log(1000)
            })
            //方法二
            function sleep2(ms) {
                return new Promise(function(resolve, reject) {
                    setTimeout(resolve, ms)
                })
            }
            sleep2(1000).then(() => {
                console.log(2000)
            })
            //方法三
            function sleep3(ms) {
                return new Promise(function(resolve, reject) {
                    setTimeout(resolve, ms)
                })
            }
            async function init() {
                await sleep3(1000);
            }
            init().then(() => {
                console.log(3000)
            })
        </script>
    </body>

</html>

原文参照:https://www.cnblogs.com/mengfangui/p/9765243.html

用JS实现一个sleep函数

标签:style   pre   llb   head   http   lan   return   char   cal   

原文地址:https://www.cnblogs.com/art-poet/p/12524386.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!