関数を使用した JQuery 拡張機能がありますが、インスタンスのオプションにアクセスする方法がわかりません。
(function ($) {
$.fn.MyExtension= function (methodOrOptions) {
if (methods[methodOrOptions]) {
return methods[methodOrOptions].apply(this, Array.prototype.slice.call(arguments, 1));
} else if (typeof methodOrOptions === 'object' || !methodOrOptions) {
// Default to "init"
return methods.init.apply(this, arguments);
} else {
$.error('Method ' + methodOrOptions + ' does not exist on jQuery.MyExtension');
}
};
var methods = {
init: function (options) {
var defaults = {
testOption: "test"
};
options = $.extend(defaults, options);
return this.each(function () {
// Code logic goes here
}
MyFunction: function () {
var optionVal = options.testOption;
}
};
})(jQuery);
したがって、このコードは MyFunction を呼び出すとエラーをスローします。これは、「オプション」が何であるかがわからないためです。