jquery插件模板
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery插件模板相关的知识,希望对你有一定的参考价值。
A template of a basic jQuery plugin, including over-ridable options
(function($){ $.fn.functionName = function(options) { var options = $.extend({}, options); return $(this).each(function(i) { //Optionally use the .each() function }); }//end $.fn })(jQuery);
以上是关于jquery插件模板的主要内容,如果未能解决你的问题,请参考以下文章