我想使用jQuery切换功能为div设置动画,所以我搜索了Google并找到了我使用的代码,但它没有用。这是我使用的代码。
doDiv.toggle(function()
{
return oDiv.animate({ opacity: 'toggle', marginTop:('-' + allChildDivHeight + 'px') }, speed, easing, callback);
},function()
{
return oDiv.animate({ opacity: 'toggle', marginTop:('-' + (margin_top+allChildDivHeight )+ 'px') }, speed, easing, callback);
});
上述脚本有什么问题?需要一些帮助。感谢。