1
var thetop = "top";

// create the object literal
var aniArgs = {};

// Assign the variable property name with a value of 10
aniArgs[thetop] = 10; 

// Pass the resulting object to the animate method
<something>.stop().animate(
    aniArgs, 10  
);  

我只想将顶部、右侧、左侧作为属性而不是上面代码中的全部内容

4

2 回答 2

0

这些行中有一些东西

var arg = {};

arg["top"]= "200px";

$('div').animate(arg,2000);

检查小提琴

于 2013-08-06T09:09:52.740 回答
0
$('selector').stop().animate({top:100, left:100});
于 2013-08-06T09:07:48.123 回答