js获取系统时间并刷新

function showTime() {
  var now = new Date();
  var year = now.getFullYear();
  var month = now.getMonth()+1;
  var day = now.getDate();
  var hours = now.getHours();
  var minutes = now.getMinutes();
  var seconds = now.getSeconds();
  document.getElementById('time').innerHTML = ""+year+"年"+month+"月"+day+"日 "+hours+":"+minutes+":"+seconds+"";
  var timeID = setTimeout(showTime,1000);
}

这段函数可以获取当前系统的时间并自动刷新。
year一定要用getFullYear(),而不是getYear(),后者已经过时了。
由于getMonth()的计数是从0开始,所以要加1。

你可能感兴趣的:(js获取系统时间并刷新)