我开发了一个jquery插件
$(someelment).myplugin();
工作完美。
当其他插件包含错误显示时
$(someelment).myplugin().otherplugin();
并且以下情况也有效。
$(someelment).otherplugin().myplugin();
我开发了一个jquery插件
$(someelment).myplugin();
工作完美。
当其他插件包含错误显示时
$(someelment).myplugin().otherplugin();
并且以下情况也有效。
$(someelment).otherplugin().myplugin();
通常,您必须在插件函数中返回this
(或this.each()
)以保持插件的可链接性。如果你错过了,你可能无法调用另一个插件 - 只是你的问题。这是参考。
你需要有一个
return this
或者return this.each()
插件中的声明,以使链接正常工作。