问答详情
源自:8-3 计时器setInterval()

所谓每秒刷新是怎么回事呀,怎么也没看出什么变化??

setInterval();

写这句跟没写这句一样的

提问者:livelove 2016-03-12 16:53

个回答

  • huohuo1
    2016-03-14 10:07:17
    已采纳

    你所谓的刷新是刷新整个页面?


  • monitor_jone
    2016-03-15 14:53:05

     function clock(){

        var time=new Date();          

        attime=time.getHours()+":"+time.getMinutes()+":"+time.getSeconds();

        document.getElementById("clock").value = attime;

      }

      var timer=setInterval(clock,1000);

    设置时间每秒钟刷新一次,中间加上冒号会更加清楚,建议cope到DW里面运行。


  • huohuo1
    2016-03-12 17:48:47

    setInterval(function(){

    console.log(1);

    },1000);