Fork me on GitHub
摘要: 1 ;(function($) { 2 3 /** 4 * 初始化插件 5 * @author: luofei 6 * @version: 2013/03/22 7 * @param: {array} options 初始化传入的json数据 8 */ 9 10 $.fn.lf = function(options){11 this.opts = $.extend({}, $.fn.lf.defaults, options);12 this._init();13 };14 15 /*16 * 插件的扩展函数 ... 阅读全文
posted @ 2013-03-22 12:04 Poised_flw 阅读(298) 评论(0) 推荐(0) 编辑