2022-06-23 |

创建用于对象的模板

创建用于对象的模板

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>滴答编程(dida100.com)</title>
</head>
<body>

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

</body>
</html>

0

发表评论

    评价:
    验证码: 点击我更换图片
    最新评论