循环不是函数

cycle is not a function

我有以下页面http://link.org/ (tested and is valid W3 HTML), where I am using the jquery cycle slideshow function(旧版本)。

但是即使确实调用了循环函数文件,我仍然得到错误:$(...).cycle is not a function

有人能看看问题出在哪里吗?

谢谢!

出于某些奇怪的原因 jQuery 工具在页面完全加载之前调用就绪事件,更改脚本顺序:

<script type="text/javascript" src="includes/jquery.cycle.all.min.js"></script>
<script type="text/javascript" src="includes/jquery.tools.min.js"></script>

<script type="text/javascript" src="includes/jquery.tools.min.js"></script>
<script type="text/javascript" src="includes/jquery.cycle.all.min.js"></script>

你的错误就会消失。