$(function(){ // $.extend()拓展方法: $.extend({ backgroundColor:function(){ $('body').css('background','#ccc'); } }) $.backgroundColor();//----->就能夠調用; }) $(function(){ // $.fn.extend() jq對象的拓展方法: $.fn.extend({ color:function(){ $(this).css('color','red'); }, bg:function(){ $(this).css('background','red'); } }) $('#txt').bg();//----->就能夠調用; })