我尝试获取正确的日期格式,例如:24-7-2015
。
date = new Date("24-7-2015").toString({ dateFormat: 'd-M-yy' })
但是日期的输出是:Wed Dec 7 00:00:00 UTC+0100 2016
谢谢
答案 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)