action.js 232 B

12345678910111213
  1. const Action = function Action(el) {
  2. this.creatEl = el;
  3. };
  4. Action.prototype = {
  5. bindEvent: () => {
  6. console.log(this.creatEl, "_-------");
  7. this.creatEl.addEventListener("click", () => {
  8. alert(11);
  9. });
  10. },
  11. };