对 Layui 的事件监听有些疑问,求帮忙分析一下这几行代码

发布于 2022-09-12 22:26:54 字数 2734 浏览 29 评论 0

先看下 Layui 文档的描述,比如监听选项卡切换这一节监听选项卡切换
“Tab 选项卡点击切换时触发,回调函数返回一个 object 参数,携带两个成员:”

element.on('tab(filter)', function(data){
  console.log(this);        //当前 Tab 标题所在的原始 DOM 元素
  console.log(data.index);  //得到当前 Tab 的所在下标
  console.log(data.elem);   //得到当前的 Tab 大容器
});

疑问在于:
如果我们用比较原始的方法来监听 Tab 选项卡点击切换时触发,可能是这样写:

eleTab.addEventListener("click", function(event) {
 // 点击 Tab 选项卡时触发该函数
})

可以看到与 Layui 的写法从外观形式上就有很大的差别。 Layui 做了哪些封装呢?Layui 上面的写法并没有看到它监听 click 事件啊,为啥在点击 Tab 选项卡时会触发?
我觉得可能是与以下源码有关,但看不出重点。
element.js

  Element.prototype.on = function(events, callback){
    return layui.onevent.call(this, MOD_NAME, events, callback);
  };

layui.js

 //自定义模块事件
  Layui.prototype.onevent = function(modName, events, callback){
    if(typeof modName !== 'string' 
    || typeof callback !== 'function') return this;

    return Layui.event(modName, events, null, callback);
  };

  //执行自定义模块事件
  Layui.prototype.event = Layui.event = function(modName, events, params, fn){
    var that = this
    ,result = null
    ,filter = (events || '').match(/\((.*)\)$/)||[] //提取事件过滤器字符结构,如:select(xxx)
    ,eventName = (modName + '.'+ events).replace(filter[0], '') //获取事件名称,如:form.select
    ,filterName = filter[1] || '' //获取过滤器名称,,如:xxx
    ,callback = function(_, item){
      var res = item && item.call(that, params);
      res === false && result === null && (result = false);
    };
    
    //如果参数传入特定字符,则执行移除事件
    if(params === 'LAYUI-EVENT-REMOVE'){
      delete (that.cache.event[eventName] || {})[filterName];
      return that;
    }
    
    //添加事件
    if(fn){
      config.event[eventName] = config.event[eventName] || {};

      //这里不再对多次事件监听做支持,避免更多麻烦
      //config.event[eventName][filterName] ? config.event[eventName][filterName].push(fn) : 
      config.event[eventName][filterName] = [fn];
      return this;
    }
    
    //执行事件回调
    layui.each(config.event[eventName], function(key, item){
      //执行当前模块的全部事件
      if(filterName === '{*}'){
        layui.each(item, callback);
        return;
      }
      
      //执行指定事件
      key === '' && layui.each(item, callback);
      (filterName && key === filterName) && layui.each(item, callback);
    });
    
    return result;
  };

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

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

发布评论

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

评论(1

庆幸我还是我 2022-09-19 22:26:54

当然人家源码里监听 click 事件啊,为啥是你代码里要监听?

事件触发:https://github.com/sentsin/la...

封装调用:https://github.com/sentsin/la...

监听 click 事件:https://github.com/sentsin/la...

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