为什么我在复合语句"中得到" SyntaxError:missing}在此代码的最后一行:
var currentMonth = 1;
$(document).ready(function(){
$("#left").click(function(){
$("#calendar").animate({opacity: "0"},"slow",function(){
if (currentMonth === 1) {
currentMonth = 12;
}
});
});
});
在jslint中检查我的代码。 你能告诉我我错了什么部分,我还是jQuery的新手。
提前致谢!