1

我开发了一个jquery插件

$(someelment).myplugin();

工作完美。

当其他插件包含错误显示时

$(someelment).myplugin().otherplugin();

并且以下情况也有效。

$(someelment).otherplugin().myplugin();
4

2 回答 2

2

通常,您必须在插件函数中返回this(或this.each())以保持插件的可链接性。如果你错过了,你可能无法调用另一个插件 - 只是你的问题。是参考。

于 2012-08-10T11:13:05.643 回答
1

你需要有一个

return this或者return this.each()

插件中的声明,以使链接正常工作。

于 2012-08-10T11:10:38.800 回答