このプラグインコードにデフォルトのオプションを受け入れさせるにはどうすればよいですか?
// Utility
if ( typeof Object.create !== 'function' ) {
object.create = function( obj ) {
function F(){};
F.prototype = obj;
return new F();
};
}
(function( $, window, document, undefined ) {
var Super = {
init: function( options, elem ) {
var self = this;
self.elem = elem;
self.$elem = $( elem );
//self.alertbox( options.alertmsg );
self.loadingBar( options.duration );
if ( typeof options === 'string' ) {
self.search = options;
} else {
// object was passed
self.search = options.search;
}
self.options = $.extend({}, $.fn.superHero.options, options );
},
alertbox: function( message ) {
var self = this;
alert(message);
},
loadingBar: function( duration ) {
var self = this;
$('#loadingBar').animate({
width: 699
}, duration);
},
};
$.fn.superHero = function( options ){
return this.each(function() {
var hero = Object.create( Super );
hero.init( options, this );
$.data( this, 'superHero', hero);
});
};
$.fn.superHero.options = {
alertmsg: 'Hello World!',
duration: 8000,
};
})( jQuery, window, document );
オプションは、プラグインを呼び出すときにインデックスページで定義した場合にのみ機能します。
オプションがユーザーから要求されるのではなく、ユーザーによって上書きされるデフォルトを持つようにするにはどうすればよいですか?