js获取当前时间格式化字符串

var today = new Date();

var month = today.getMonth() + 1;

month = month < 10 ? \’0\’+month : month;

var day = today.getDate() < 10 ? \’0\’+today.getDate() : today.getDate();

var hours = today.getHours() < 10 ? \’0\’+today.getHours() : today.getHours();

var mins = today.getMinutes() < 10 ? \’0\’+today.getMinutes() : today.getMinutes();

var secs = today.getSeconds() < 10 ? \’0\’+today.getSeconds() : today.getSeconds();

 

var now1 = today.getFullYear() + \’/\’ + month + \’/\’ + day;

var now1 = today.getFullYear() + \’/\’ + month + \’/\’ + day + “ ” + hours + “:” + mins + “:” + secs ;

版权声明:本文为will-666原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/will-666/p/11564090.html