相关疑难解决方法(0)

.toISOString()函数问题

请考虑以下代码HTML + JavaScript:

<!DOCTYPE html>
<html>
<body>

<p id="demo">Click the button to display a date after changing the hours, minutes, and seconds.</p>

<button onclick="myFunction()">Try it</button>
 <script>
 function myFunction()
  {
  var d = new Date();
  d.setHours(0,0,0,0);
  document.write(d + '<br/>');
  document.write('ISO Date '+ d.toISOString() + '<br/>');
  //I want it to be 2013-04-17T00:00:00.000Z
  }
 </script>
</body>
</html>
Run Code Online (Sandbox Code Playgroud)

输出:

Thu Apr 18 2013 00:00:00 GMT+0530 (India Standard Time)
ISO Date 2013-04-17T18:30:00.000Z
Run Code Online (Sandbox Code Playgroud)

任何人都可以帮助理解日期和时间的这种差异

javascript

10
推荐指数
1
解决办法
2万
查看次数

FullCalendar日期格式

想要找到在FullCalendar中更改默认日期格式的方法.

实际上,它是:
2013年8月13日星期二18:00:00 GMT-0400(美国东部时间)

我想:
2013-08-13

谢谢.

javascript fullcalendar

5
推荐指数
1
解决办法
2万
查看次数

标签 统计

javascript ×2

fullcalendar ×1