function StringtoDate(strDate) {
var date = new Date(strDate.replace(
/^(\d{4})(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)$/,
//'$4:$5:$6 $2/$3/$1'
'$1/$2/$3 $4:$5:$6'
));
return date;
}
转载于:https://www.cnblogs.com/yangbt/p/3811959.html
function StringtoDate(strDate) {
var date = new Date(strDate.replace(
/^(\d{4})(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)$/,
//'$4:$5:$6 $2/$3/$1'
'$1/$2/$3 $4:$5:$6'
));
return date;
}
转载于:https://www.cnblogs.com/yangbt/p/3811959.html