jquery 扩展

 

(function($){

$.say=function(what){

alert(what+"   hello");

}

})(jQuery);

*******************************

$.fn.makeItBlue=function(){

return this.css("color","blue");

};

*******************************

 

$(function(){

jQuery.say("lining");//调用方法

$("#wi").makeItBlue();

});

 

 

你可能感兴趣的:(jquery 扩展)