JavaScript 创建用于对象的模板【每日一段代码78】

<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>

原文地址:https://www.cnblogs.com/naokr/p/2441364.html