日期:2014-05-16 浏览次数:20522 次
function GrandFather(){ this.g=function(msg){ alert(msg+"\n grandFather: Good Morning,grandson!"); } this.g2=function(msg){ alert(msg+"\n grandFather: have a good day, grandson!"); } } function Father(){ GrandFather.call(this); this.f=function(msg){ alert(msg+"\n father:you bad boy,haha!"); } } function Son(){ Father.call(this); } var son = new Son(); son.f("son: hi,Dad!"); son.g("grandson: Morning,grandFather!"); son.g2("grandson: Let me walk with you!");