JS 日期与时间戳相互转化

1、日期格式转时间戳 

 function getTimestamp(time)
{
return Date.parse(new Date(time));
}

2、时间戳转日期格式 

 function transformPHPTime(time)
{
    var date = new Date(time * 1000);
    
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();     return Y+M+D+h+m+s;
}
上一篇:日期时间插件flatpickr.js使用方法


下一篇:Python3 日期与时间戳相互转换