jQuery.noConflict();//将变量$的控制权让渡给给其他插件或库 jQuery(function(){//不在直接使用$,而是使用jQuery jQuery("p").click(function(){ alert( jQuery(this).text() ); }); });