首页 > 其他分享 >定时器 间隔函数setinterval()

定时器 间隔函数setinterval()

时间:2023-03-29 15:23:00浏览次数:39  
标签:定时器 console log setinterval 间隔 setInterval const 1000

就是设置一个时间(以毫秒为单位),等待数秒后再次执行回调函数

use

<body>
    <script>
        const huidao = setInterval(function(){
            console.log(123);
        },1000)

        //第二种方式
        // const huidiao  = setInterval(() => {
        //     console.log('11111');
        // }, 1000);
    </script>
</body>
</html>

标签:定时器,console,log,setinterval,间隔,setInterval,const,1000
From: https://www.cnblogs.com/handsomepp/p/17269056.html

相关文章