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

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-10-27 00:38:34  来源:igfitidea点击:

How to use parseDate()

javascriptjquery

提问by captainrad

variablecurrently 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 dis now a Dateobject 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)