1. 程式人生 > >如何解決jquery與第三方外掛庫衝突問題

如何解決jquery與第三方外掛庫衝突問題

<script type="text/javascript">
jQuery.noConflict(); //將變數$的控制權讓渡給prototype.js
jQuery(function(){ //使用jQuery
jQuery("p").click(function(){
alert( jQuery(this).text() );
});
});
$("pp").style.display = 'none'; //使用prototype
</script>