Javascript??л??????
???????????? ???????[ 2012/10/31 10:17:28 ] ????????
??????????????Student??????????Person??????????????????????????????????????copy??????????Js??????????????????????????????????????????б??????з??????????prototype?????????????????????prototype?????????????????????????????????prototype????????????????Js????????????????prototype?????????prototype?????prototype?????????????????????????????????????undefined???
???????????????????????Ч???????????????????????????????prototype???????????????????????е???????????????name??sayGoodbye??sayHello??????????????俴????????????????????????????????????????е????????????????????????????????????????????????prototype?????????????????????????????У?????????????????????????????????????????????????
function Person(name){
this.name = name;
}
function Student(name??id){
this.id = id;
}
Student.prototype = new Person(this.name);
?????????з????????????????????????????????????????????????????“??”????????????????????????????????????????Js??С????????????????????????
function Person(name){
this.name = name;
}
Person.prototype.sayHello = function(){alert(this.name+“say Hello!”);};
function Student(name??id){
Person.call(this??name);
this.id = id;
}
Student.prototype = new Person();
Student.prototype.show = function(){
alert(“Name is:”+ this.name+” and Id is:”+this.id);
}
????????????????e??????call????????????????????????????????????д???????ж???????????prototype???У??????????????????????????????и???prototype?????????????е??????????????????Щ?????????????????????Js??prototype??constructor??????constructor???????????????
??????
???·???
??????????????????
2023/3/23 14:23:39???д?ò??????????
2023/3/22 16:17:39????????????????????Щ??
2022/6/14 16:14:27??????????????????????????
2021/10/18 15:37:44???????????????
2021/9/17 15:19:29???·???????·
2021/9/14 15:42:25?????????????
2021/5/28 17:25:47??????APP??????????
2021/5/8 17:01:11