如何转换其他格式的日期



我有一个这种格式的日期:

Mon Oct 19 2015 00:00:00 GMT+0200 (ora legale Europa occidentale)

我的目标是将日期转换为以下格式:

2015-10-19T00:00:00

我怎样才能达到这个结果?

更新

var currDateEnd = $('#calendar').fullCalendar('getView').start;
                        currDateEnd.toISOString();
                        console.log("currDateEnd iso => ", currDateEnd.toDate().toDateString());
moment().format();  // results in something like : 2015-10-25T13:09:29-04:00

如果需要,您可以剪掉末端部分。(时区部分,-04:00(

来源:时刻.js

>这个Mon Oct 19 2015 00:00:00 GMT+0200 (ora legale Europa occidentale)是Javascript日期对象的字符串表示,所以使用这个函数.toISOString();像这样

演示

var d = new Date();
$(".yo").append("The String of the object -> "+d.toString()+"<br>");
$(".yo").append("What you want -> "+d.toISOString());

试试这个

var currDateEnd = $('#calendar').fullCalendar('getView').start;
console.log("currDateEnd iso => ", currDateEnd.toDate().toISOString());

相关内容

  • 没有找到相关文章

最新更新