つの簡単なテーマを通して、javascriptの対象と継承を学びます.
1379 ワード
もっと読む
テーマ:jsを使って父と子のオブジェクトを作成します.親オブジェクトは2つの属性と2つの方法があります.親オブジェクトの属性と方法のすべてをサブオブジェクトに継承し、親の方法を変更します.また、サブオブジェクトは自分の属性と方法があります.
テーマ:jsを使って父と子のオブジェクトを作成します.親オブジェクトは2つの属性と2つの方法があります.親オブジェクトの属性と方法のすべてをサブオブジェクトに継承し、親の方法を変更します.また、サブオブジェクトは自分の属性と方法があります.
/*
* javascript
*
* prototype: ,
* */
function father(id,name){
this.id=id;
this.name=name;
}
father.prototype.getId=function(){
return "father_id:"+this.id;
}
father.prototype.getName=function(){
return "name:"+this.name;
}
function son(id,name,mather){
father.call(this,id,name);
this.mather=mather;
}
son.prototype = new father();
son.prototype.get_mather_name=function(){
return this.mather;
}
son.prototype.getId=function(){
return "son_id:"+this.id;
}
var t_son=new son("1001"," "," ");
var t_id=t_son.getId();
var t_name=t_son.getName();
var t_mather_name=t_son.get_mather_name();
console.log(t_id);
console.log(t_name);
console.log(t_mather_name);