我开发了一个jquery插件
$(someelment).myplugin();
工作完美。
当其他插件包含错误显示
时$(someelment).myplugin().otherplugin();
以下案例也有效。
$(someelment).otherplugin().myplugin();
答案 0 :(得分:2)
通常,您必须在插件函数中返回this
(或this.each()
)才能保持插件的可链接性。如果你错过了,你可能无法调用另一个插件 - 只是你的问题。 Here是参考。
答案 1 :(得分:1)
你需要一个
return this
或return this.each()
语句,以便链接正常工作。