この記事の例では、JavaScript が現在時刻を UTC 標準時刻に変換する方法を説明します。皆さんの参考に共有してください。詳細は以下の通りです。
ここでは、JavaScript を使用して現在時刻を UTC 標準時間に変換し、北京は東 8 区にあり、北京時間から 8 時間を差し引きます。
<!DOCTYPE html> <html> <body> <p id="demo"> Click the button to display the UTC date and time as a string. </p> <button onclick="myFunction()">Try it</button> <script> function myFunction() { var d = new Date(); var x = document.getElementById("demo"); x.innerHTML=d.toUTCString(); } </script> </body> </html>
この記事が皆様の JavaScript プログラミング設計に役立つことを願っています。