本来我有
targetWater.animate({
"width": "+=100%"
现在我想动态使用“宽度”或“高度”
var direction = (targetWater.hasClass('x'))? "width" : "height";
targetWater.animate({
direction: "+=100%"
但这不起作用。
我试过了
direction.toString()
和
''+direction+''
对此也没有乐趣
var anim = { direction: "+=100%" }
targetWater.animate(anim,