如何在jQuery中设置正确的日期?

时间:2015-07-24 09:46:24

标签: javascript jquery

我尝试获取正确的日期格式,例如:24-7-2015

date = new Date("24-7-2015").toString({ dateFormat: 'd-M-yy' })

但是日期的输出是:Wed Dec 7 00:00:00 UTC+0100 2016

谢谢

2 个答案:

答案 0 :(得分:0)

请尝试使用以下代码段。

var date = new Date("24-7-2015") // If this is not worked than check your local system date format 

document.write(date.getDate() + "-" +  (date.getMonth() + 1) + "-" + date.getFullYear());

如果有任何疑虑,请告诉我。

答案 1 :(得分:0)

请参阅此answer

如果您想要轻松制作,请在示例中尝试使用momentjs

moment('24-7-2015', 'D-M-YYYY').format('DD-MM-YY');