using jQuery with other libraries
http://docs.jquery.com/Using_jQuery_with_Other_Libraries
mootools 与 jQuery冲突的一种解决方案
原文地址:http://www.cnblogs.com/windlivefamily/articles/1900007.html
在同时使用mootools 与 jQuery库,经常出现"$"的冲突问题,通过下面的方法可以避免jQuery和mootools中"$"对象属性重合!
<head>
<script src="../Scripts/lib/jquery-1.4.2.js" type="text/javascript"></script>
<script type="text/javascript">jQuery.noConflict();</script>
<script src="../Scripts/lib/mootools-1.2.5-core-nc.js" type="text/javascript"></script>
</head>
jquery与prototype共存:
http://www.iteye.com/topic/69322
本文介绍了一种解决在同一个项目中同时使用jQuery和MooTools时出现的冲突问题的方法。通过调用jQuery的noConflict()方法,可以避免两个库中的$符号发生冲突。
1744

被折叠的 条评论
为什么被折叠?



