扩展

jQuery提供了2个供用户扩展的基类’ - $.extend$.fn.extend,其实没有必要这样做,我们可以这样做一个简单插件

(function($){
            $.fn.myplugin = function(){
                        alert(this[0].tagName);
            }
})(jQuery);

之后我们可以使用

$('selectorstring').myplugin();



Copyright ©2009 - 2014 CmsTop.Com.All rights reserved.
思拓合众