const Action = function Action(el) { this.creatEl = el; }; Action.prototype = { bindEvent: () => { console.log(this.creatEl, "_-------"); this.creatEl.addEventListener("click", () => { alert(11); }); }, };