输出时间会闪烁 求解

来源:8-3 计时器setInterval()

天蝎座的格子世界4334540

2017-03-05 16:45

<!DOCTYPE HTML>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>定时器</title>

<script type="text/javascript">

  var attime;

  function clock(){

    var time=new Date();          

    attime=time;

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

  }

    setInterval(clock,1000);


  //隔一秒运行一次

</script>

</head>

<body>

<form>

<input type="text" id="clock" size="50"  />

</form>

</body>

</html>

/*把attime=time;改为

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

从新提交后 所得时间会闪烁,求解   */

写回答 关注

1回答

  • 靑尹
    2017-03-05 17:39:23

    运行的时间长了,当让会闪烁了

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468060 学习 · 21891 问题

查看课程

相似问题