1.jQuery插件分类
- 封装对象方法的插件
- 封装全局函数的插件
- 选择器插件
2.jQuery插件编写方法
封装对象方法的插件
(function($){
$.fn.extend({//注意此处是fn
"pluginName":function(arguments){
//plugin code goes here.
},
"anotherPluginName":...
});
})(jQuery);
插件写好后方可调用
封装全局函数的插件
(function($){
$.extend({
"pluginName":function(arguments){
//plugin code goes here.
},
"anotherPluginName":...
});
})(jQuery);
选择器插件
同封装全局函数的插件写法
3.获取网上的jQuery插件
【jQuery插件】网址:http://plugins.jquery.com
使用方法:参考插件api