jQuery插件LavaLamp和jQuery循环之间的冲突

时间:2012-04-20 12:20:27

标签: jquery cycle lavalamp

我遇到的问题是我怀疑是jQuery插件LavaLamp和jQuery插件循环之间的冲突。 lavalamp运行良好,直到我添加了循环所有脚本

工作lavalamp菜单的网址为http://www.eastover.plus.com/consultantnet

带有jQuery循环的lavalamp菜单的URL为http://www.eastover.plus.com/consultantnet/slideshow.html

有人知道我做错了吗?

2 个答案:

答案 0 :(得分:1)

问题是你不止一次地包含了jQuery脚本文件。具体来说,导致问题的原因是你在加载LavaLamp插件之后加载了一次jQuery,从而覆盖了用插件扩展的$定义。

<!-- jQuery is first included here; $ is defined -->
<script type="text/javascript" src="sitefiles/jquery.js"></script>
<script type="text/javascript" src="sitefiles/easing.js"></script>
<script type="text/javascript" src="sitefiles/easingfix.js"></script>

<!-- then your LavaLamp plugin is included here; $.fn.LavaLamp is defined -->
<script type="text/javascript" src="sitefiles/lavalamp.js"></script>
<script type="text/javascript" src="sitefiles/imagecycle.js"></script>
...

<!-- Now, later on, jQuery is included again; $ is overwritten
     and $.fn.LavaLamp is lost -->
<script type="text/javascript" src="js/jquery.min.js"></script>

答案 1 :(得分:0)

你有两行包括jquery.js。你只能有1个。 此行中您的命名错误:<ul id="1" class="lavaLamp">。您可以将其重命名为id="menu1"