切换布局
显示结果
<html> <head> <title>JavaScript getMilliseconds Method</title> </head> <body> <script type = "text/javascript"> var dt = new Date( ); document.write("getMilliseconds() : " + dt.getMilliseconds() ); </script> </body> </html>