使用 toUTCString() 把今天的日期(根据 UTC)转换为字符串

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <h2>JavaScript Date()</h2>
  6.  
  7. <p>toUTCString() 方法将日期转换为 UTC 字符串(日期显示标准):</p>
  8.  
  9. <p id="demo"></p>
  10.  
  11. <script>
  12. var d = new Date();
  13. document.getElementById("demo").innerHTML = d.toUTCString();
  14. </script>
  15.  
  16. </body>
  17. </html>