/** * @lisence jquery plugin demo v1.0.0 * * author: Jeremy Yu * * description: * this is a jquery plugin Template * see the end of this document to learn how to use the jquery plugin */ ; (function($, window, document, undefined) { /* 插件类定义 */ var P…
javascrpt插件编写模板 这里不分享如何编写插件,只留一个框架模板,使用面向对象的形式进行编写,方便管理 ;(function(window,document){ function FnName(options) { //变量定义区 var name = "foo"; //默认参数 var defaults = { }; //如果未传递参数则使用默认参数 this.ops = options || {}; for (var i in defaults) { if (typeof…