-1

エラー メッセージが表示されましたが、セミコロンをどこに置くべきかわかりません。これがコードです。

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

2 に答える 2

4

In the callback, after the function addClass() the semicolon is missing:

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

like this

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