パラメータを渡す他のオブジェクトを使用して作成しながら、新しいJSオブジェクトを拡張したいと思います。動的パラメータなしでオブジェクトを拡張することしかできないため、このコードは機能しません。
otherObject = function(id1){
this.id = id1;
};
otherObject.prototype.test =function(){
alert(this.id);
};
testObject = function(id2) {
this.id=id2;
};
testObject.prototype = new otherObject("id2");/* id2 should be testObject this.id */
var a = new testObject("variable");
a.test();
なにか提案を?