JS面向对象时,组件的click事件怎么调用自身的方法?

发布于 2022-09-03 13:50:08 字数 2435 浏览 18 评论 0

在《你不知道的JS》中,有一个委托控件对象的例子,使用了jquery,我想用原生js改写
其中遇到这句this.$el.click(this.onClick.bind(this));改写一直失败。麻烦各位可以给我解惑。
我的方案

  • 结果点击按钮控制台无反应

        Button.build=function($where){
          this.insert($where);
          this.$el.onclick=function(){
            Button.onClick.bind(this);
          }
        };
  • 点击控制台显示Button "undefined" clicked!

        Button.build=function($where){
          this.insert($where);
          this.$el.onclick=function(){
            Button.onClick.call(this);
          }
        };
  • 点击后显示Uncaught TypeError: Cannot read property 'call' of undefined

Button.build=function($where){
          this.insert($where);
          this.$el.onclick=function(){
            this.onClick.call(this);
          }
        };

分析
this.$el.onclick之后,console.log(this),显示的是一个dom元素<button>xxx</button>

疑问
组件绑定click事件如何调用自身的方法?jquery是如何实现这个绑定的?
谢谢大家!

源代码:

var Widget = {
          init: function(width, height) {
            this.width = width || 50;
            this.height = height || 50;
            this.$el = null;
          },
          insert: function($where) {
            if (this.$el) {
              this.$el.css({
                width: this.width + 'px',
                height: this.height + 'px'
              }).appendTo($where);
            }
          }
        };
        var Button = Object.create(Widget);
        Button.setup = function(width, height, label) {
          this.init(width, height);
          this.label = label || 'default';
          this.$el = $('<button>').text(this.label);
        };

        Button.build = function($where) {
          this.insert($where);
          this.$el.click(this.onClick.bind(this));
        };
        Button.onClick = function(e) {
          console.log('Button "' + this.label + '" clicked!');
        };

        $(document).ready(function() {
          var $body = $(document.body);
          var btn1 = Object.create(Button);
          btn1.setup(125, 30, 'Hello');
          var btn2 = Object.create(Button);
          btn2.setup(150, 40, 'World');
          btn1.build($body);
          btn2.build($body);
        });

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

土豪我们做朋友吧 2022-09-10 13:50:08
btn.onclick = Button.onClick.bind(this)
森林散布 2022-09-10 13:50:08

因为你看的是《你不知道的js》,所以大家都不知道。就酱。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文