jquery插件的模板
/*! * jQuery plugin boilerplate */ ;(function ( $, window, document, undefined ) { var pluginName = "defaultPluginName", //插件名称 defaults = { //默认设置 propertyName: "value" }; // 插件的构造函数 function Plugin( element, options ) { this.element = element; this.options = $.extend( {}, defaults, options) ; this._defaults = defaults; this._name = pluginName; this.init(); } //原型方法 Plugin.prototype = { //初始化 ‘init‘ : function(){ } }; //创建jquery插件 $.fn[pluginName] = function ( options ) { return this.each(function () {
var pName = "plugin_" + pluginName;
//避免Plugin组件的重复实例化 if ( !$.data(this, pName) ) { $.data(this, pName, new Plugin(this, options) ); } }); } })( jQuery, window, document );
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。