var currentTime = eval('new Date(' +你要转换的时间格式.replace(/\d+(?=-[^-]+$)/, function (a) { return parseInt(a, 10) - 1; }).match(/\d+/g) + ')');
JS用来把 yyyy-MM-dd HH:mm:ss 转换成 Date格式
本文共 251 字,大约阅读时间需要 1 分钟。
var currentTime = eval('new Date(' +你要转换的时间格式.replace(/\d+(?=-[^-]+$)/, function (a) { return parseInt(a, 10) - 1; }).match(/\d+/g) + ')');
JS用来把 yyyy-MM-dd HH:mm:ss 转换成 Date格式
转载于:https://www.cnblogs.com/jayGold/p/3594581.html