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