创建一个卡片对象,卡片上标有“名字”、“地址”和“电话”等信息。名片对象提供一个方法以输出这些信息。

<script type="text/javascript">
function Card(name, address, phone) {
this.name = name; //初始化名片信息
this.address = address;
this.phone = phone;
this.printCard = function() { //创建printCard函数的定义
line1 = "Name:" + this.name + "<br> "; //输出名片信息
line2 = "Address:" + this.address + "<br> "; //读取地址
line3 = "Phone:" + this.phone + "<br> "; //读取电话信息
document.writeln(line1, line2, line3); //输出
}
}
Tom = new Card("Tom", "hangzhouRoad 123", "0571-12345"); //创建Tom的名片
Tom.printCard(); //输出名片信息
</script>

原文地址:https://www.cnblogs.com/clear93/p/4623836.html