标签: javascript
我想将此日期字符串格式'04 / 21/19'转换为此格式'2019-04-14T08:54:27.096Z'
答案 0 :(得分:2)
使用new Date(string):
new Date(string)
var newFormat = new Date('04/21/19')
这将返回
Date 2019-04-21T03:00:00.000Z
由于没有时间信息,因此该时间将设置为当地时间00:00(UTC为0:00时我是-3:00)