私はconsole.log()に戻ります。設定するPrototypeを後で使用するクラスのイベント?
どのようにして要素を検討できますか?矢印の機能で
let builder = function(){
this.box = $(`<div id="box" class="box">`);
this.inputcontainer = $(`<div id="inputcontainer" class="inputcontainer">`).appendTo(this.box);
this.textarea = $(`<textarea id="textarea"></textarea>`).appendTo(this.inputcontainer);
this.textarea.on("change keyup keydown input paste", this.postmsg);
this.chat.appendTo($('body'));
}
//someothercode
builder.prototype.postmsg = (e) => {
console.log(this); // returns window when i need it to be referencing textarea
}
let instance = new builder();
んが 'this'は – charlietfl