<html> <head> <meta charset="UTF-8"> <title>以本地格式显示日期/时间</title> </head> <body> <script language="javascript"> d = new Date(2005,9,27,5,20,30); document.write(d.toLocaleString()); </script> </body> </html>
Why is the output October?
Months 0-11 represent January-December, and of course 9 represents October
Months 0-11 represent January-December, and of course 9 represents October