较大的脚本文件失败但较小似乎没问题

时间:2013-04-07 09:13:30

标签: jquery html css html5 jquery-hover

Here is fiddlelink where my result page is okand there is bad page but more 'advanced'

为什么我添加后页面没有正确响应:

$('#progressbar').progressbar({
  value: 37;
});
$('#acces a').click(function(){
  $('#mask').fadeIn('fast');
  $('#game').fadeIn('fast');
});

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

您的代码中存在拼写错误: 它应该是

.progressbar({value:37}); 

而不是

.progressbar({value:37;});