jCarousel Lite安装问题

时间:2012-02-26 21:47:00

标签: jquery jquery-plugins firebug jcarousel

我在将jCarousel安装到我的网站上时遇到了一些困难。

http://www.gmarwaha.com/jquery/jcarousellite/

我已尝试安装此插件但是当/ i通过firebug呈现安装时,我收到一条错误消息:

  

“$ not defined”,$(“。carousel”)。jCarouselLite({

http://natesmithen.com/wired/test/test.html

有谁知道如何解决这个问题?

2 个答案:

答案 0 :(得分:1)

首先从为项目添加JQuery开始。也许你会遇到更多问题,因为这是你第一次。别担心!

1.下载jQuery库并添加它。

- 在此下载:http://docs.jquery.com/Downloading_jQuery
  - 添加到页眉:

<head>
    <script src="/javascripts/1.7.1/jquery.js" type="text/javascript"></script>
</head>

2.或者将CDN Hosted jQuery文件添加到页眉:

<head>
    <script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.1.min.js" type="text/javascript"></script>
</head>

答案 1 :(得分:1)

HTML文件: 在这里加载jquery文件

<script src="jquery.js"></script>

之后加载轮播文件

<script src="jcarousellite.js"></script>  

然后做

   <script>
    $(document).ready(function() {
       $(".carousel").jCarouselLite({
        //add properties here 
       });
    });
    </script>