js定时器

js 定时器有以下两个方法:

  • setInterval() :按照指定的周期(以毫秒计)来调用函数或计算表达式。方法会不停地调用函数,直到 clearInterval() 被调用或窗口被关闭。
  • setTimeout() :在指定的毫秒数后调用函数或计算表达式。

举获取当前时间的例子

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    <div id="screen">
        时间
    </div>
</body>
</html>
<script>
    var screen=document.getElementById('screen')

    function getTime() {
        screen.innerHTML=new Date().toLocaleTimeString()

    }
    getTime()
    setInterval(getTime,1000)
</script>

 

上一篇:curl: (3) Illegal characters found in URL


下一篇:利用setInterval做图片切换,定时器案例