js时间戳怎么转成日期格式

var date = new Date(new Date().getTime());
Y = date.getFullYear() + '-';
M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + '-';
D = date.getDate() + ' ';
h = date.getHours() + ':';
m = date.getMinutes() + ':';
s = date.getSeconds();
console.log(Y+M+D+h+m+s);

posted @ 2018-03-25 14:46  Python研究者  阅读(594)  评论(0编辑  收藏  举报