jquery使用的一些总结

来源:互联网 发布:淘宝规模概括 编辑:程序博客网 时间:2024/06/06 01:37

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