源代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>享学课堂</title> </head> <body> <h1>JavaScript ISO 日期</h1> <p>Separate date and time with a capital T.</p> <p>Indicate UTC time with a capital Z.</p> <p id="demo"></p> <script> document.getElementById("demo").innerHTML = new Date("2015-03-25T12:00:00Z"); </script> </body> </html>
运行结果