切换布局
显示结果
<html> <head> <title>JavaScript toLocaleString Method</title> </head> <body> <script type = "text/javascript"> var dt = new Date(1993, 6, 28, 14, 39, 7); document.write( "Formated Date : " + dt.toLocaleString() ); </script> </body> </html>