创建用于对象的模板
- <html>
- <body>
- <script type="text/javascript">
- function person(firstname,lastname,age,eyecolor)
- {
- this.firstname=firstname
- this.lastname=lastname
- this.age=age
- this.eyecolor=eyecolor
- }
- myFather=new person("John","Adams",35,"black")
- document.write(myFather.firstname + " 的年龄是 " + myFather.age + " 岁。")
- </script>
- </body>
- </html>