时间:2021-07-01 10:21:17 帮助过:9人阅读
本篇文章给大家带来的内容是关于javascript如何格式化时间戳函数(附代码),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。
formatDate(v) { if (/^(-)?\d{1,10}$/.test(v)) { v = v * 1000; } else if (/^(-)?\d{1,13}$/.test(v)) { v = v * 1; } var dateObj = new Date(v); var month = dateObj.getMonth() + 1; var day = dateObj.getDate(); var hours = dateObj.getHours(); var minutes = dateObj.getMinutes(); var seconds = dateObj.getSeconds(); if(month<10){ month = "0" + month; } if(day<10){ day = "0" + day; } if(hours<10){ hours = "0" + hours; } if(minutes<10){ minutes = "0" + minutes; } if(seconds<10){ seconds = "0" + seconds; } var UnixTimeToDate = dateObj.getFullYear() + '-' + month + '-' +day + ' ' + hours + ':' + minutes + ':' + seconds; return UnixTimeToDate; }
相关推荐:
js格式化时间和js格式化时间戳示例_基础知识
js如何格式化时间
以上就是javascript如何格式化时间戳函数(附代码)的详细内容,更多请关注Gxl网其它相关文章!