JavaScript生成DateTime格式时间字符串
Posted bird-eat-vegetable
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript生成DateTime格式时间字符串相关的知识,希望对你有一定的参考价值。
new Date().getFullYear()+‘-‘+( ( (new Date().getMonth()+1)<10 ? ‘0‘+ (new Date().getMonth()+1) : (new Date().getMonth()+1) ) )+‘-‘+ (new Date().getDate()<10 ? ‘0‘+new Date().getDate() : new Date().getDate())+‘ ‘+ new Date().toTimeString().substr(0,8)
以上是关于JavaScript生成DateTime格式时间字符串的主要内容,如果未能解决你的问题,请参考以下文章
将 C# DateTime 转换为 Javascript 日期
javascript Vue.js过滤将DateTime字符串格式化为可读/自定义格式
如何在 JavaScript 中将时间戳转换为 MySQL DateTime?