我有一个字符串Mar 7 2012
。
如何将此转换为Date对象,以便我可以使用mydate.getDate()
,mydate.getMonth()
,mydate.getFullYear()
等?
答案 0 :(得分:2)
嗯,非常简单
var d =new Date("March 7 2012");
document.write(d.getMonth()); //use it
答案 1 :(得分:0)
我将Date.parse
与Date#setTime
结合使用。例如:
var d = new Date();
d.setTime(Date.parse("Mar 7 2012"));
你在mozilla的dev中有很好的参考文档。网络:https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Date