我想将字符串转换为日期格式yyyy / mm / dd
string test="August 27 2014"; I want to convert to 2014/08/27
答案 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 >>