时间戳
Posted runningding
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了时间戳相关的知识,希望对你有一定的参考价值。
function timestamp(time){
var date = new Date(time); //传个时间戳过去就可以了
Y = date.getFullYear() + ‘-‘;
M = (date.getMonth()+1 < 10 ? ‘0‘+(date.getMonth()+1) : date.getMonth()+1) + ‘-‘;
D = date.getDate() + ‘ ‘;
return Y+M+D; //2014-04-23 18:55:49:123
}
以上是关于时间戳的主要内容,如果未能解决你的问题,请参考以下文章