62,254
社区成员
发帖
与我相关
我的任务
分享
Man=function(n,h,e) {
this.name=n;
this.height=h;
this.education=e;
}
Man.prototype.Work=function() {
document.write("i am "+this.name+" ,my height is"+ this.height+ ",my education is"+this.education);//如果是load以后换行换成alert
}
var m=new Man("sohighthesky",175,"X");
m.Work()