-1

我收到了该错误消息,但我不确定分号应该在哪里。这是代码。

$('.animation1').delay(350).queue(function(){
    $(this).addClass("animate-from-top")
});
4

2 回答 2

4

在回调中,函数后addClass()缺少分号:

$('.animation1').delay(350)
                .queue(function(){
                   $(this).addClass("animate-from-top");
// semicolon missing here -----------------------------^ 
                });
于 2013-09-04T09:35:15.337 回答
1

像这样

$('.animation1').delay(350).queue(function(){$(this).addClass("animate-from-top");});
于 2013-09-04T09:35:22.253 回答