jquery与prototype冲突的解决办法

<s.c.r.i.p.t type="text/javas.c.r.i.p.t"> 
jQuery.noConflict(); //将变量$的控制权让渡给prototype.js 
jQuery(function($){ //使用jQuery 
$("p").click(function(){ //继续使用 $ 方法 
alert( $(this).text() ); 
}); 
}); 

$("pp").style.display = 'none'; //使用prototype 
</s.c.r.i.p.t>

相关推荐