将字符串转换为日期(Javascript)

时间:2014-08-27 16:52:37

标签: javascript

我想将字符串转换为日期格式yyyy / mm / dd

string test="August 27 2014"; I want to convert to 2014/08/27

1 个答案:

答案 0 :(得分:0)

字符串似乎很容易被date

解析
var yourDate = new Date('August 27 2014');

yourDate是您需要的日期对象,

然后

yourDate.getFullYear() //get the yeaer number
yourDate.getMonth()+1  //get the month number
yourDate.getDate()   // get the date number

最后,尝试read it >>