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

???·???
App??С????H5?????????????????Щ??
2024/9/11 15:34:34?????????????????????????
2024/9/10 11:13:49P-One ???????????????????????????????????????
2024/9/10 10:14:12???????????????????????????
2024/9/9 18:04:26??????????????????
2023/3/23 14:23:39???д?ò??????????
2023/3/22 16:17:39????????????????????Щ??
2022/6/14 16:14:27??????????????????????????
2021/10/18 15:37:44