码迷,mamicode.com
首页 > 编程语言 > 详细

javascript获取系统当前时间

时间:2015-07-04 01:08:26      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:javascript 当前时间

function getCurrentDate() {

   var now = new Date();

   var dataStr = now.getFullYear() + "-";

   if (now.getMonth() + 1 < 10) {

      dataStr += "0" + (now.getMonth() + 1);

   } else {

      dataStr += (now.getMonth() + 1);

   }

   dataStr += "-";

   if (now.getDate() < 10) {

      dataStr += "0" + now.getDate();

   } else {

      dataStr += now.getDate();

   }

   dataStr += " ";

   if (now.getHours() < 10) {

      dataStr += "0" + now.getHours();

   } else {

      dataStr += now.getHours();

   }

   dataStr += ":";

   if (now.getMinutes() < 10) {

      dataStr += "0" + now.getMinutes();

   } else {

      dataStr += now.getMinutes();

   }

   dataStr += ":";

   if (now.getSeconds() < 10) {

      dataStr += "0" + now.getSeconds();

   } else {

      dataStr += now.getSeconds();

   }

   $("#showCurrentTime").text(dataStr);

}

window.setInterval("getCurrentDate()", 1000);


javascript获取系统当前时间

标签:javascript 当前时间

原文地址:http://hundage.blog.51cto.com/3779401/1670637

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!