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