标签:jquery jquery插件
将类似的jQuery代码,转化为插件,可以提高代码的重用性,并能够有效的组织代码。
(function($){ $.fn.yourPluginName=function(){ //Your code goes here return this; } })(jQuery)
总结以便之后查阅。
将代码转化成jQuery插件,布布扣,bubuko.com
将代码转化成jQuery插件
原文地址:http://blog.csdn.net/comeonstone/article/details/38515765