【无标题】

在这里插入图片描述

let date = null,
    hours = null,
    minutes = null,
    seconds = null

//设置定时器 一秒钟刷新一次
  this.timer = setInterval(() => {
  
    date = new Date()
    hours = date.getHours() //小时 ,返回 Date 对象的小时 (0 ~ 23)
    minutes = date.getMinutes() //分钟 ,返回 Date 对象的分钟 (0 ~ 59)
    seconds = date.getSeconds() //秒 ,返回 Date 对象的秒数 (0 ~ 59)
    
    //修改小时格式
    if (hours >= 0 && hours <= 9) {
      hours = '0' + hours
    }
    
    //修改分钟格式
    if (minutes >= 0 && minutes <= 9) {
      minutes = '0' + minutes
    }
    
    //修改秒格式
    if (seconds >= 0 && seconds <= 9) {
      seconds = '0' + seconds
    }
    
    //获取当前系统时间
    this.currentTime = hours + ':' + minutes + ':' + seconds
  }, 1000)

你可能感兴趣的:(JavaScript,java,数据库,javascript)