码迷,mamicode.com
首页 > Web开发 > 详细

jquery widget开发——核心框架

时间:2014-07-25 14:04:31      阅读:236      评论:0      收藏:0      [点我收藏+]

标签: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

jquery widget开发——核心框架

标签:des   style   blog   color   io   re   c   cti   

原文地址:http://www.cnblogs.com/lee5945/p/3867559.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!