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

参考参考

<script type="text/javascript">

  var attime;

  function check(a){  //小于10的分钟和秒前面加个0

      if(a<10){

          a = "0" + a;

      }

      return a;

    }

  function clock(){

    var time=new Date();          

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

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

  }

  setInterval(clock,1000);

</script>


正在回答

3 回答

你想问什么哦

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

举报

0/150
提交
取消
JavaScript进阶篇
  • 参与学习       468044    人
  • 解答问题       21891    个

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

进入课程

参考参考

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