我有以下内容:
setTimeout(function()
$('.golden').animate({
opacity: "1",
top: "84px"
}, 'slow');
}, 1000 );
它返回Unexpected identifier
。
但如果我这样做:
$('.golden').animate({
opacity: "1",
top: "84px"
}, 'slow');
有用。
可能是什么问题呢?