返回元素而不是我的 jquery 插件中方法的结果
我正在开发一个 jquery 插件,在执行它的方法时遇到问题:
$(".data").bindFlexigrid("test")
在我的插件中,我有:
Plugin.prototype.test = function() {
return "return this!!";
};
使用 Chrome 的调试工具,我发现我的方法正常执行
结果是:
如您所见,结果未显示
完整的插件代码:https://gist.github.com/1725981
该方法在第141行,但是所有方法都有问题
I am developing a plugin for jquery and am having a problem to execute methods on it:
$(".data").bindFlexigrid("test")
In my plugin I have:
Plugin.prototype.test = function() {
return "return this!!";
};
Using the debugging tool of Chrome I found that my method is executed normally
The result is:
As you can see the result is not displayed
The full plugin code in: https://gist.github.com/1725981
The method is in line 141, but the problem with all methods
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过传递
“test”
,您将遇到这个if
。return this.each
将返回this
,它是 jquery 对象。return
内每个
都有不同的含义。来自文档:
By passing
"test"
you will hit thisif
.return this.each
will returnthis
which is the jquery object.return
within theeach
has a different meaning.From the docs: