jquery

方法一: jQuery.noConflict(); //将变量$的 控制权让渡给prototype.js jQuery(function(){ //使用jQuery jQuery("p").click(function(){ alert( jQuery(this).text() ); }); }); $("pp").style.display = 'none'; //使用prototype 方法二: 我们可以通过noConflict()函数来 定义一个快捷方式用来获取dom节点 var $j = jQuery.noConflict(); //自 定义一个比较短快捷方式 $j(function(){ //使用jQuery $j("p").click(function(){ alert( $j(this).text() ); }); }); $("pp").style.display = 'none'; //使用prototype 还有其它的方法,都给大家列举 出来,同理都可以看明白了吧,呵 呵。 方法三: jQuery.noConflict(); //将变量$的 控制权让渡给prototype.js jQuery(function($){ //使用jQuery $("p").click(function(){ //继续使用 $ 方法 alert( $(this).text() ); }); }); $("pp").style.display = 'none'; //使用prototype 方法四: jQuery.noConflict(); //将变量$的 控制权让渡给prototype.js (function($){ //定义匿名函数并设 置形参为$ $(function(){ //匿名函数内部的 $均为jQuery $("p").click(function(){ //继续使用 $ 方法 alert($(this).text()); }); }); })(jQuery); //执行匿名函数且传递 实参jQuery $("pp").style.display = 'none'; //使用prototype 0 0

你可能感兴趣的:(jQuery冲突)