ホームページ > 記事 > ウェブフロントエンド > JavaScript new_js オブジェクト指向後のコンストラクター属性
js オブジェクトが生成されるとき:
例: function BB(a){
this.a="kkk"
}
var b=new BB();
このとき、b は BB の属性 prototype が指すプロトタイプ オブジェクトです。
プロトタイプ オブジェクトは関数 BB を指すコンストラクター属性を持ちます。 >したがって、alert (b.constructor==BB.prototype.constructor) //true
たとえば、次のように追加します。 "ccc" ;
淘宝網のキッシーの継承を見てください:
rp.constructor = r;
//alert(r.prototype.constructor== sp.constructor)
r.superclass = sp;