Jquery - 如何包含文件?

时间:2013-04-07 10:21:42

标签: javascript jquery html html5 jquery-ui

这是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');
    });
});

但它没有回应。为什么呢?

1 个答案:

答案 0 :(得分: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库相同。