我正在尝试为我的需要编写一个简单的 jQuery 插件,使用本样式指南中第一个插件的变体。
;(function($) {
var plugin_name = 'my_plugin',
defaults = {};
function Plugin ( element, options ) {
this.element = element;
this.options = $.extend( {}, defaults, options );
this._defaults = defaults;
this._name = plugin_name;
this.init();
}
Plugin.prototype = {
init: function () {
// Plugin code - attempt to debug
alert('hi');
}
}
$.fn[plugin_name] = function ( options ) {
return this.each(function () {
if (!$.data(this, 'plugin_' + plugin_name)) {
$.data(this, 'plugin_' + plugin_name, new Plugin( this, options ));
}
})
}
})( jQuery );
但是,当我调用它时,它似乎没有被执行。在这里小提琴:http: //jsfiddle.net/DCRNU/
$(document).ready(function() {
$.fn.my_plugin();
});
我错过了什么?