gpt4 book ai didi

javascript - 在使用稍后提到的原型(prototype)的类中设置事件?

转载 作者:行者123 更新时间:2023-11-30 20:57:33 26 4
gpt4 key购买 nike

当我到达 console.log() 它的返回窗口时。

如何获取考虑中的元素?

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();

最佳答案

builder.prototype.postmsg = function(e){
console.log(this.textarea);
}

关于javascript - 在使用稍后提到的原型(prototype)的类中设置事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47495634/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com