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');
});
我该如何解决这个问题?
答案 0 :(得分:1)
您的代码中存在拼写错误: 它应该是
.progressbar({value:37});
而不是
.progressbar({value:37;});