Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个看起来像这样的字符串:
"2013/1/16"
有什么方法可以快速将其转换为 javascript 中的日期对象,例如:
convertToDateTime("2013/1/16", "yyyy/MM/dd")
这很简单:
var myDate = new Date("2013/1/16");
这应该够了吧。 查看Date 对象的文档
var str = "2013/1/16"; var strToDate = 新日期(str);