考慮下面的代碼的HTML + JavaScript的:問題與.toISOString()函數
<!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>
輸出:
Thu Apr 18 2013 00:00:00 GMT+0530 (India Standard Time)
ISO Date 2013-04-17T18:30:00.000Z
任何人都可以在日期理解這種差異&時間幫助
在第二個例子中,我認爲它應該是'd.getTimezoneOffset()'。偏移量可以是負值或正值。如果該值爲負值,否定將會創建一個附加值。 – dbasch
@dbasch這就是要點。如果這個值是負值,那麼你** ** ** UTC0之後,所以你需要在當地時間添加小時。 –