なぜこのコードは明日の日付に戻りましたか?toISOString()は間違った日付を返します
私たちは8月31日であるため、2013年9月31日ではなく、2013年9月1日を返す必要があります。
http://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_toisostring
function myFunction() {
var d = new Date();
var x = document.getElementById("demo");
x.innerHTML = d.toISOString();
}
<p id="demo">Click the button to display the date and time as a string, using the ISO
standard.</p>
<button onclick="myFunction()">Try it</button>
それはだからUTC – soulcheck
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString – Nayuki
私はMYジュールではなく、UTCの1を取ることができますどのように? – Francois