作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个 jQuery 插件。这是我的第一次,所以如果这是一个愚蠢的问题,我深表歉意。
我在插件中有几个公共(public)方法。
我试图从插件定义内部和插件外部调用这些方法,其方式与 Java 中方法的 public
关键字的工作方式类似,但是我不断收到 undefined is not a function
错误。
我尝试了多种方式调用它,但仍然无法让它工作。
关于如何做到这一点有什么想法吗?
这是我的代码库的示例:
$(document).ready(function() {
(function($) {
// Plugin Definition
$.fn.popup = function(options){
// code here...
// SUBMIT FORM
$(settings.popupSubmitSelector).on("click", function(e) {
submitForm(); // call to my method
this.submitForm();
$.fn.popup.submitForm();
});
// more code here...
// my public method
this.submitForm = function(){
// method code here
}
// more code...
}
}(jQuery));
});
最佳答案
我想我现在明白你的问题了。如果要在同一对象的实例中执行公共(public)方法,则必须正确引用当前实例。在 JS 中你可以这样实现:
var MyObj = function() {
var instance = this;
this.publicMethod = function() {
alert('test');
}
var privateMethod = function() {
instance.publicMethod();
}
return this;
}
更新这是使用代理函数来公开功能的插件的基本框架
(function($) {
var settings = { ... };
var methods = {
init: function(options) { ... submitForm() ... },
submitForm: function() { /* code here */ }
};
$.fn.popup = function(method) {
if (methods[method]) {
return methods[method].apply(this, Array.prototype.slice.call(arguments, 1));
} else if (typeof method === 'object' || !method) {
return methods.init.apply(this, arguments);
} else {
$.error('Method ' + method + ' does not exist on jQuery.popup');
}
};
})(jQuery);
然后您可以通过以下方式从外部访问
$('selector').popup('submitForm');
关于jquery - 如何从插件调用 jQuery 插件中的公共(public)函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24683831/
我是一名优秀的程序员,十分优秀!