配置项的优先级 续 缺省配置,参数为空的默认值T.tbwidget.calendar.prototype = { buildParam:function(o){ var that = this; var o = o || {}; that.date = o.date || new Date(); that.selectedate = o.selectedate || that.date; that.duration = o.duration || 0.9; that.easing = o.easing || Y.Easing.elasticOut; that.closeable= o.closeable || true; return this; }, //… }; Example: 日历组件 http://www.uedmagazine.com/test/call/t-calendar.js
22.
配置项的优先级 续 必填的配置:缺少必要的参数会报错var c = new T.tbwidget.calendar( node , callback ,options); Example: 日历组件 http://www.uedmagazine.com/test/call/Noname2.html var c = new T.tbwidget.calendar( null , null ,options); 正确的参数 错误的参数