jQuery插件

1.jQuery插件分类

  • 封装对象方法的插件
应用最广
  • 封装全局函数的插件
作为jQuery全局函数插件
  • 选择器插件
作为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

    推荐阅读