mootols和ajax脚本之间的冲突

时间:2015-03-15 10:06:26

标签: javascript jquery ajax

我不是专家程序员,我需要帮助。 我在这些代码之间存在冲突:

<script type="text/javascript" src="mootools-1.5.1-core.js"></script>
<script src="src/tooltip.js" type="text/javascript"></script>

tooltip.js代码在此包中: http://www.menucool.com/download/tooltip.zip

在项目中我还需要使用jquery。 预先感谢您的帮助。 甲

1 个答案:

答案 0 :(得分:1)

如果必须使用jQuery和mooTools,可以在noConflict模式下运行jQuery。脚本的顺序应如下所示:

<script src"path/to/jquery.js" type="text/javascript"></script>
<script src="src/tooltip.js" type="text/javascript"></script>
<!-- this will make jQuery available through the jQuery variable -->
<script type="text/javascript">$.noConflict();</script>

<script type="text/javascript" src="mootools-1.5.1-core.js"></script>