zl程序教程

您现在的位置是:首页 >  其他

当前栏目

将中国标准时间)转化为yyyy-MM-dd

中国标准 时间 转化 MM DD YYYY
2023-09-11 14:22:19 时间

有两种方法:

1.

var d = new Date(this.searchs.open_date[0]);
this.data2=d.getFullYear() + '-' + (d.getMonth() + 1) + '-' + d.getDate() + ' ' + d.getHours() + ':' + d.getMinutes() + ':' + d.getSeconds();

 

this.searchs.open_date[0]        是你要转化的时间









2.
  使用插件


http://momentjs.cn/ 这个是他的官网
 var d = new Date(this.searchs.open_date[0]);
this.data=moment(this.searchs.open_date[0]).format('YYYY-MM-DD HH:mm:ss')