-2

这是html标签的一部分。

<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
        <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>
        <script type="text/javascript" src="custom.js"></script>

在 custom.js 里面我有一部分

$(document).ready(function (){
    //$('#mask').hide();    
    //$('#game').hide();
    $('.game-button').hover(
        function() {$(this).fadeTo('fast','1');},
        function() {$(this).fadeTo('slow','0');}
    );
    $('#progressbar').progressbar({
      value: 37
     });
    $('#acces a').click(function(){
        $('#mask').fadeIn('fast');
        $('#game').fadeIn('fast');
    });
});

但它没有响应。为什么?

4

1 回答 1

2

您需要http://在脚本源之前添加:

//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js

成为:

http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js

jquery-ui 库也是如此。

于 2013-04-07T11:40:26.647 回答