博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js格式化 Thu Mar 07 2019 12:00:00 GMT+0800 (中国标准时间) 及相互转化
阅读量:5337 次
发布时间:2019-06-15

本文共 711 字,大约阅读时间需要 2 分钟。

1 Thu Mar 07 2019 12:00:00 GMT+0800 (中国标准时间) 转换为 2019-03-07 12:00:00代码如下        const d = new Date(Thu Mar 07 2019 12:00:00 GMT+0800 (中国标准时间))        const resDate = d.getFullYear() + '-' + this.p((d.getMonth() + 1)) + '-' + this.p(d.getDate())        const resTime = this.p(d.getHours()) + ':' + this.p(d.getMinutes()) + ':' + this.p(d.getSeconds())p为不够10添加0的函数    p(s) {          return s < 10 ? '0' + s : s    },2 .2019-03-07 12:00:00转换为 Thu Mar 07 2019 12:00:00 GMT+0800 (中国标准时间)代码如下    parserDate(date) {          var t = Date.parse(date)          if (!isNaN(t)) {                return new Date(Date.parse(date.replace(/-/g, '/')))          }    },

转载

转载于:https://www.cnblogs.com/sunBinary/p/11400689.html

你可能感兴趣的文章
Linux命令学习手册-printf命令(转)
查看>>
理解Lock例子
查看>>
Spring课程 Spring入门篇 6-3 ProxyFactoryBean及相关内容(下)
查看>>
Javascript禁止父元素滚动条滚动, pc、移动端均有效
查看>>
跳转网页
查看>>
Silverlight 4 安装出现语言版本错误
查看>>
Matlab——表达式 阵列与矩阵的创建
查看>>
匿名管道 双向通信 需要两个
查看>>
Android系统手机端抓包方法
查看>>
Vue的filter属性
查看>>
PHP CI 框架简单使用(二)
查看>>
RabbitMq
查看>>
POJ2155:Matrix
查看>>
scala 打印一个乘法口诀表 (<<scala 编程>> P87)
查看>>
Python虚拟环境
查看>>
在Bootstrap4中使用垂直居中
查看>>
个人作业——软件产品案例分析
查看>>
测试时test
查看>>
15分钟学会使用Git和远程代码库
查看>>
八皇后问题的实现
查看>>