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 ;

猜你喜欢

转载自www.cnblogs.com/will-666/p/11564090.html