重写 zepto.js 插件
我正在尝试为 zepto.js 重写一个小但很棒的 jquery 插件:
https://github.com/phiggins42/bloody-jquery-plugins/blob/master/pubsub .js
我不认为这是一个问题,因为语法几乎相似,但我在 pubsub 插件的这一部分有点挣扎:
cache[topic] && d.each(cache[topic], function(){
this.apply(d, args || []);
});
我的控制台显示如下:
类型错误:表达式的结果 'd.each' [未定义] 不是 功能。
一些提示如何让它发挥作用?
i'm trying to rewrite a little but awesome jquery plugin for zepto.js:
https://github.com/phiggins42/bloody-jquery-plugins/blob/master/pubsub.js
i don't think its a ploblem, because the syntax is nearly similar, but im struggling a little bit at this part of the pubsub plugin:
cache[topic] && d.each(cache[topic], function(){
this.apply(d, args || []);
});
my console says something like:
TypeError: Result of expression
'd.each' [undefined] is not a
function.
some hints how to get this working?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
想通了。 .each 不适用于 zepto。
这是我重写的 zepto 插件:
https://github.com/martinjuhasz/pubsub-zepto
figured it out. .each didn't work with zepto.
here is my rewritten zepto plugin:
https://github.com/martinjuhasz/pubsub-zepto