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