javascript 如何使用 parseDate()
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/15395703/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
How to use parseDate()
提问by captainrad
variable
currently outputs as 2013-02-05T16:30:01Z
variable
当前输出为 2013-02-05T16:30:01Z
How do I use parseDate(), to change how the date is formatted?
如何使用 parseDate() 来更改日期的格式?
回答by misoukrane
You can use the object Date in order to define the Date.
您可以使用对象日期来定义日期。
var d = new Date('2013-02-05T16:30:01Z');
the variable d
is now a Date
object you can process all date methods. And I think that parseDate() is a jQuery UI method ($.datepicker.parseDate
)
该变量d
现在是一个Date
可以处理所有日期方法的对象。我认为 parseDate() 是一个 jQuery UI 方法 ( $.datepicker.parseDate
)