//字符串转时间格式
function getDate(strDate) {
var date = eval(‘new Date(‘ + strDate.replace(/\d+(?=-[^-]+$)/,
function (a) { return parseInt(a, 10) – 1; }).match(/\d+/g) + ‘)’);
return date;
}
转载请注明:苏demo的别样人生 » JQuery 字符串转时间格式
//字符串转时间格式
function getDate(strDate) {
var date = eval(‘new Date(‘ + strDate.replace(/\d+(?=-[^-]+$)/,
function (a) { return parseInt(a, 10) – 1; }).match(/\d+/g) + ‘)’);
return date;
}
转载请注明:苏demo的别样人生 » JQuery 字符串转时间格式