为了账号安全,请及时绑定邮箱和手机立即绑定

为什么我的代码在显示时,有时会在文本框内短暂地闪现time.getHours()+":"+time.getMinutes()+":" +time.getSeconds() 而不是一直显示时间

<!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.getHours()+":"+time.getMinutes()+":" +time.getSeconds();

    

    

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

  }

  setInterval("clock()",1000);

</script>

</head>

<body>

<form>

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

</form>

</body>

</html>



正在回答

1 回答

好像是浏览器问题,大家忽略吧。。

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么我的代码在显示时,有时会在文本框内短暂地闪现time.getHours()+":"+time.getMinutes()+":" +time.getSeconds() 而不是一直显示时间

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信