jQuery提供了2个供用户扩展的‘基类’ - $.extend和$.fn.extend,其实没有必要这样做,我们可以这样做一个简单插件
(function($){ $.fn.myplugin = function(){ alert(this[0].tagName); } })(jQuery);
之后我们可以使用
$('selectorstring').myplugin();