标签:des style blog color io re c cti
框架代码:
$.widget( "myns.myplugin", { //默认参数 options: { clear: null }, //初始化,控件生命周期内只运行一次 _init:function(){ ,} //创建控件,控件生命周期内会运行多次 _create: function() { }, //设置参数 _setOption: function( key, value ) { // In jQuery UI 1.8及以前用法 $.Widget.prototype._setOption.apply( this, arguments ); // In jQuery UI 1.9及以后用法 this._super( "_setOption", key, value ); }, // 释放控件 destroy: function() { // In jQuery UI 1.8及以前用法 $.Widget.prototype.destroy.call( this ); // In jQuery UI 1.9及以后 } }); }( jQuery ) );
开发要点,控件内部方法以下划线(_)开头。
jquery widget开发——核心框架,布布扣,bubuko.com
标签:des style blog color io re c cti
原文地址:http://www.cnblogs.com/lee5945/p/3867559.html