我目前正在修改我的个人 jQuery 插件起点,但我遇到了一个小而烦人的问题。如果调用公共方法,则返回调用它的对象而不是值。
这是我的实际出发点:
;(function($, window, document, undefined) {
'use strict';
var pluginName = 'defaultPluginName',
defaults = {
foo: 'foo',
bar: 'bar'
},
settingsKey = pluginName + '-settings';
var init = function(options) {
var elem = this,
$elem = $(this),
settings = $.extend({}, defaults, options);
$elem.data(settingsKey, settings);
};
var callMethod = function(method, options) {
var methodFn = $[pluginName].addMethod[method],
args = Array.prototype.slice.call(arguments);
if (methodFn) {
this.each(function() {
var opts = args.slice(1),
settings = $(this).data(settingsKey);
opts.unshift(settings);
methodFn.apply(this, opts);
});
}
};
$[pluginName] = {
settingsKey: settingsKey,
addMethod: {
option: function(settings, key, val) {
if (val) {
settings[key] = val;
} else if (key) {
return settings[key]; // returns the value from settings
}
}
}
};
$.fn[pluginName] = function(options) {
if (typeof options === 'string') {
callMethod.apply(this, arguments);
} else {
init.call(this, options);
}
return this;
};
}(window.jQuery || window.Zepto, window, document));
但是,我初始化插件并调用一个方法......
$('div').defaultPluginName();
console.log($('div').defaultPluginName('option', 'foo'));
它返回: [<div>, <div>, prevObject: jQuery.fn.jQuery.init[1], context: #document, selector: "div"]
而不是'foo'
(从评论所在的位置)除外。
所以问题是,是否有可能从公共方法返回值并仍然保留可链接性?如果你有时间和乐趣来帮助我,我会很高兴举一些例子;)