JavaScript的繼承實現方式

1.使用call或apply方法,將父對象的構造函數綁定在子對象上 function A(){ this.name = 'json'; } function B(){ A.call(this); } //測試 var testB = new B(); alert(testB.name) //->json;   2.實現繼承,方法二:prototype模式 function A(){ this.na
相關文章
相關標籤/搜索