在js中转化字符串String为Date类型

把一个日期字符串如“2007-2-28 10:18:30”转换为Date对象:
1:
var   strArray=str.split("   ");  
var   strDate=strArray[0].split("-");  
var   strTime=strArray[1].split(":");  
var   a=new   Date(strDate[0],(strDate[1]-parseInt(1)),strDate[2],strTime[0],strTime[1],strTime[2])  

2:
var   s   =   "2005-12-15   09:41:30";  
var   d   =   new   Date(Date.parse(s.replace(/-/g,   "/")));  

你可能感兴趣的:(String)