gpt4 book ai didi

javascript - 如何从新的 Date 对象返回日期格式 "Jan 29, 2014"

转载 作者:行者123 更新时间:2023-12-02 17:50:06 26 4
gpt4 key购买 nike

当我使用var d = new Date()时我得到一个巨大的字符串,例如:

Wed Jan 29 2014 11:36:56 GMT-0800 (Pacific Standard Time)

我如何返回这个:

Jan 29,2014

不使用substring等来解析它的字符串,是否有一个自然的函数可以做到这一点?

最佳答案

var d = new Date();
var months = ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'];
var str = months[d.getMonth()] + " " + d.getDate() + ", " + d.getFullYear();
console.log(str);

<强> jsFiddle example

关于javascript - 如何从新的 Date 对象返回日期格式 "Jan 29, 2014",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21440923/

26 4 0
文章推荐: javascript - 未捕获的类型错误 : Object # has no method 'apply' error