标签:return turn name prototype 构造 模式 var 函数 UNC
function Parent(){
this.name = "李小龙";
this.age = "30";
};
Parent.prototype.lev=function(){
return this.name;
}
var x=Parent();
alert(x.name);
alert(x.lev());
标签:return turn name prototype 构造 模式 var 函数 UNC
原文地址:https://www.cnblogs.com/yuyedaocao/p/9736317.html