Here is fiddlelink where my result page is ok和and there is bad page but more 'advanced'。
添加后,为什么页面无法正确响应:
$('#progressbar').progressbar({
value: 37;
});
$('#acces a').click(function(){
$('#mask').fadeIn('fast');
$('#game').fadeIn('fast');
});
我怎样才能解决这个问题?
最佳答案
您的代码中有错别字:
它应该是
.progressbar({value:37});
代替
.progressbar({value:37;});
关于jquery - 较大的脚本文件失败,但较小的脚本文件似乎可以,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15860778/