这是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');
});
});
但它没有响应。为什么?