jQuery插件样板只是一个快速启动jquery插件开发的样板。特征支持私有属性和方法支持公共属性和方法jQuery命名空间中只有一个条目插件数据存储在数据对象中(在内存中)灵活的清晰易读初始化要初始化插件,只需调用以下内容: $('#myElement').pluginName();
要传递自定义配置,请使用以下内容: $('#myElement').pluginName({ 'strProperty': 'value', 'boolProperty': true });
公共API访问这种结构允许轻松访问公共方法和属性。要访问settings
对象等属性,请使用: var settings = $('#myElement').pluginName('settings');
jquery plugin boilerplate:只是一个快速启动jquery插件开发的样板
文件列表
jquery-plugin-boilerplate-master.zip
(预估有个4文件)
jquery-plugin-boilerplate-master
boilderplate.min.js
2KB
LICENSE
18KB
boilerplate-comments.js
4KB
README.md
984B
暂无评论