JavaScript
JavaScript 对象
本例使用函数来构造对象
源代码:
点击运行 »
<script> function person(firstname, lastname, age, eyecolor) { this.firstname = firstname; this.lastname = lastname; this.age = age; this.eyecolor = eyecolor; } myFather = new person("John", "Doe", 50, "blue"); document.write(myFather.firstname + " is " + myFather.age + " years old."); </script>
运行结果:
点击运行 »