jQuery多个版本和其他js库冲突的解决方法
jQuery多个版本或和其他js库冲突主要是常用的$符号的问题,这个问题jquery早早就有给我们预留处理方法了,下面一起来看看解决办法。
1.同一页面jQuery多个版本或冲突解决方法。
<!DOCTYPEhtml> <htmllang="en"> <head> <metacharset="utf-8"/> <title>jQuery测试页</title> </head> <body> <!--引入1.6.4版的jq--> <scriptsrc="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.js"></script> <script>varjq164=jQuery.noConflict(true);</script> <!--引入1.4.2版的jq--> <scriptsrc="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script> <script>varjq142=jQuery.noConflict(true);</script> <script> (function($){ //此时的$是jQuery-1.6.4 $('#'); })(jq164); </script> <script> jq142(function($){ //此时的$是jQuery-1.4.2 $('#'); }); </script> </body> </html>
2.同一页面jQuery和其他js库冲突解决方法
jQuerynoConflict()方法
noConflict()方法会释放会$标识符的控制,这样其他脚本就可以使用它了。
jquery.js在prototype.js之前进行引入,如:
<scriptsrc="jquery.js"type="text/javascript"></script> <scriptsrc="prototype.js"type="text/javascript"></script> <pid="pp">test---prototype</p> <p>test---jQuery</p>
2.1当然,您仍然可以通过全名替代简写的方式来使用jQuery:
<scripttype="text/javascript"> jQuery.noConflict();//将变量$的控制权让渡给prototype.js,全名可以不调用。 jQuery(function(){//使用jQuery jQuery("p").click(function(){ alert(jQuery(this).text()); }); }); //此处不可以再写成$,此时的$代表prototype.js中定义的$符号。 $("pp").style.display='none';//使用prototype </script>
2.2您也可以创建自己的简写。noConflict()可返回对jQuery的引用,您可以把它存入变量,以供稍后使用。请看这个例子:
<scripttype="text/javascript"> var$j=jQuery.noConflict();//自定义一个比较短快捷方式 $j(function(){//使用jQuery $j("p").click(function(){ alert($j(this).text()); }); }); $("pp").style.display='none';//使用prototype </script>
2.3如果你的jQuery代码块使用$简写,并且您不愿意改变这个快捷方式,那么您可以把$符号作为变量传递给ready方法。这样就可以在函数内使用$符号了-而在函数外,依旧不得不使用"jQuery":
<scripttype="text/javascript"> jQuery.noConflict();//将变量$的控制权让渡给prototype.js jQuery(document).ready(function($){ $("p").click(function(){//继续使用$方法 alert($(this).text()); }); }); jQuery(function($){//使用jQuery $("p").click(function(){//继续使用$方法 alert($(this).text()); }); }); </script>
2.4使用语句块:
<scripttype="text/javascript"> jQuery.noConflict();//将变量$的控制权让渡给prototype.js (function($){//定义匿名函数并设置形参为$ $(function(){//匿名函数内部的$均为jQuery $("p").click(function(){//继续使用$方法 alert($(this).text()); }); }); })(jQuery);//执行匿名函数且传递实参jQuery $("pp").style.display='none';//使用prototype </script>
这种使用语句块的方法非常有用,在我们自己写jquery插件时,应该都使用这种写法,因为我们不知道具体工作过程中是如何顺序引入各种js库的,而这种语句块的写法却能屏蔽冲突。
注意:
1.引用javascript类库时,把jQuery引用放在最后面,可以避免冲突。
2.特别要注意jQuery()代替$()时,jQuery是区分大小写的,因为javascript本身就是区分大小写的。
以上所述是小编给大家介绍的jQuery多个版本和其他js库冲突的解决方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对毛票票网站的支持!