-1

我的 jquery 库出现错误。当我在底部附近结束脚本时,错误发生在附近,我添加了 java for 循环,因为图片命名为 0-170:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js"></script>

<!-- load Galleria -->
<script src="galleria-1.2.7.min.js"></script>

</head>
<body>
    <div class="content">
        <h1>Galleria Classic Theme</h1>
        <p>Demonstrating a basic gallery example.</p>

        <!-- Adding gallery images. We use resized thumbnails here for better performance, but it’s not necessary -->

<script src="jquery.js"></script> 
<script>
$(document).ready 
      var galleria = $('#galleria') 
      for(var i=0;i<170;i++){     
      var imgName = "images/"+i+".JPG"     
      galleria.append('<a href="'+imgName+'"><img src="'+imgName+'"></a>')
      {


    // Load the classic theme
    Galleria.loadTheme('galleria.classic.min.js');

    // Initialize Galleria
    Galleria.run('#galleria');

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

    </body>
</html>
4

2 回答 2

1

您正在从 googleapis.com 加载 jQuery 版本 1。图库插件可能需要更新版本的 jQuery。

当前版本是 1.7.2:

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>

http://docs.jquery.com/Downloading_jQuery#CDN_Hosted_jQuery

此外,您缺少很多括号和方括号。我也建议在行尾使用分号。

jQuery 就绪函数接受一个函数作为它的参数,所以你需要这样的东西:

$(document).ready( function(){
    <your code here>
});
于 2012-04-19T02:27:09.403 回答
0

认为可能是您加载了 jquery.js 三次

于 2012-04-19T02:01:51.327 回答