当前位置:Gxlcms > JavaScript > JS时间戳转为正常时间格式的方法代码

JS时间戳转为正常时间格式的方法代码

时间:2021-07-01 10:21:17 帮助过:7人阅读

本文主要和大家分享JS时间戳转为正常时间格式的方法代码,希望能帮助到大家。

//JS时间戳转为YYYY-MM-DD HH:mm:ss
function exChangeTime(timeStamp){
var str = "";
str += timeStamp.getFullYear() + '-';
timeStamp.getMonth() < 10 ? str += '0' + (timeStamp.getMonth() + 1) + '-' : str += (timeStamp.getMonth() + 1) + '-';
timeStamp.getDate() < 10 ? str += '0' + timeStamp.getDate() + ' ' : str += timeStamp.getDate() + ' ';
timeStamp.getHours() < 10 ? str += '0' + timeStamp.getHours() + ':' : str += timeStamp.getHours() + ':';
timeStamp.getMinutes() < 10 ? str += '0' + timeStamp.getMinutes() + ':' : str += timeStamp.getMinutes() + ':';
timeStamp.getSeconds() < 10 ? str += '0' + timeStamp.getSeconds(): str += timeStamp.getSeconds();
return str;
}

相关推荐:

js时间戳和普通时间相互转换方法代码

js时间戳如何转为时间格式

js时间戳格式化成日期格式的多种方法_javascript技巧

以上就是JS时间戳转为正常时间格式的方法代码的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行