gpt4 book ai didi

jquery - 如何从插件调用 jQuery 插件中的公共(public)函数

转载 作者:行者123 更新时间:2023-12-01 07:12:25 26 4
gpt4 key购买 nike

我正在开发一个 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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com