js实现继承的多种方式

1:原型链方式。即子类通过prototype将全部在父类中通过prototype追加的属性和方法都追加到Child,从而实现了继承
  function Person(){
  }
  Person.prototype.hello = "hello";
  Person.prototype.sayHello = function(){
    alert(this.hello);
  }
  
  function Child(){
  }
  Child.prototype = new Person();//这行的作用是:将Parent中将全部通过prototype追加的属性和方法都追加到Child,从而实现了继承
  Child.prototype.world = "world";
  Child.prototype.sayWorld = function(){
    alert(this.world);
  }
  
  var c = new Child();
  c.sayHello();

  c.sayWorld();

2:继承第一种方式:对象冒充
  function Parent(username){
    this.username = username;
    this.hello = function(){
      alert(this.username);
    }
  }
  function Child(username,password){
    //通过下面3行实现将Parent的属性和方法追加到Child中,从而实现继承
    //第一步:this.method是作为一个暂时的属性,并

posted on 2017-05-12 16:03  ljbguanli  阅读(113)  评论(0编辑  收藏  举报