私は次のものを持っています:
setTimeout(function()
$('.golden').animate({
opacity: "1",
top: "84px"
}, 'slow');
}, 1000 );
返しますUnexpected identifier
。
しかし、私がこれを行うと:
$('.golden').animate({
opacity: "1",
top: "84px"
}, 'slow');
できます。
何が問題なのですか?