javascript string 转 date

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;
}

posted on 2014-06-27 14:43  marcozzu2  阅读(134)  评论(0编辑  收藏  举报