JavaScript函数未定义 - jQuery Words Rotator插件

时间:2015-01-18 16:18:51

标签: javascript jquery

我有一个页面,设置:

<!DOCTYPE html>
    <html lang="en">
        <head>
            <script src="http://code.jquery.com/jquery-latest.min.js"></script>
            <link rel="stylesheet" href="themes/css/jquery.wordrotator.min.css">
            <script src="themes/js/jquery.wordrotator.min.js"></script>
            <link rel="stylesheet" href="themes/css/animate.css">

            <script type="text/javascript">
            $(function () {
                $("#myWords").wordsrotator({
                    words: ['Maths', 'English']
                });
            });
            </script>

wordsrotator是这里指定的代码: https://github.com/andreapace/wordsrotator/blob/master/jquery.wordrotator.min.js

使用此处的示例构建: http://www.andreapace.co.uk/wordsrotator/installation.html

然而,我似乎经常犯的错误是:

  

未捕获的TypeError:undefined不是函数

捡起线路:

$("#myWords").wordsrotator({

我已经尝试交换加载内容的顺序,我尝试了各种输入(例如,不仅仅是数学和英语),我甚至完全按照原样复制和粘贴代码,没有任何乐趣。< / p>

非常感谢任何帮助。

0 个答案:

没有答案