切换布局
显示结果
<html> <head> <title>User-defined objects</title> <script type = "text/javascript"> var book = new Object(); // 创建对象 book.subject = "Perl"; // 给对象分配属性 book.author = "Mohtashim"; </script> </head> <body> <script type = "text/javascript"> document.write("Book name is : " + book.subject + "<br>"); document.write("Book author is : " + book.author + "<br>"); </script> </body> </html>