如何在JavaScript对象文本中使用变量作为键?
2022-08-29 23:00:10
为什么以下工作?
<something>.stop().animate(
{ 'top' : 10 }, 10
);
然而这不起作用:
var thetop = 'top';
<something>.stop().animate(
{ thetop : 10 }, 10
);
更清楚地说明:目前我无法将 CSS 属性作为变量传递给 animate 函数。