我在 a 中有一个图像div
,以及以下 Javascript 代码:
function animate_down(key1, key2)
{
cimage = document.getElementById('sslot_img' + key1);
var topval = cimage.offsetTop;
if (topval == -416) {
cimage.animate({ top: '0px' }, 5000);
}
else {
topval = topval - 32;
var toptxt = { 'top': topval.toString() };
cimage.animate(toptxt, 5000);
}
}
我已经在 Firebug 中对其进行了测试,当调试器到达.animate
它抛出的函数时:
cimage.animate is not a function
我错过了什么?