JS 日期与时间戮相互转化
Posted gentsir
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS 日期与时间戮相互转化相关的知识,希望对你有一定的参考价值。
1、日期格式转时间戮
1 function getTimestamp(time) 2 { 3 return Date.parse(new Date(time)); 4 }
2、时间戮转日期格式
1 function transformphpTime(time) 2 { 3 var date = new Date(time * 1000); 4 5 Y = date.getFullYear() + ‘-‘; 6 M = (date.getMonth()+1 < 10 ? ‘0‘+(date.getMonth()+1) : date.getMonth()+1) + ‘-‘; 7 D = date.getDate() + ‘ ‘; 8 h = date.getHours() + ‘:‘; 9 m = date.getMinutes() + ‘:‘; 10 s = date.getSeconds(); 11 12 return Y+M+D+h+m+s; 13 }
以上是关于JS 日期与时间戮相互转化的主要内容,如果未能解决你的问题,请参考以下文章