首页 > Web开发 > 详细

js获取当前时间:yyyy-MM-dd HH:MM:SS

时间:2019-07-24 15:58:43      阅读:87      评论:0      收藏:0      [点我收藏+]
var nowDate = new Date();var year = nowDate.getFullYear();

 var month = nowDate.getMonth() + 1 < 10 ? "0" + (nowDate.getMonth() + 1): nowDate.getMonth() + 1;

 var day = nowDate.getDate() < 10 ? "0" + nowDate.getDate() : nowDate.getDate();
  
  var hours = nowDate.getHours()<10?"0" + nowDate.getHours():nowDate.getHours();
var minutes = nowDate.getMinutes()<10?"0" + nowDate.getMinutes():nowDate.getMinutes();
var seconds = nowDate.getSeconds()<10?"0" + nowDate.getSeconds():nowDate.getSeconds();

 var dateStr = year + "-" + month + "-" + day+ " " + hours+ ":" + minutes+ ":" + seconds;
 console.log(dateStr);

这是结果

技术分享图片

 

 

我要转html5和js,哎,其实还挺喜欢写后端的,但是希望自己转变一下,加油吧

js获取当前时间:yyyy-MM-dd HH:MM:SS

原文:https://www.cnblogs.com/xbxxf/p/11238424.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!