为什么下面的工作?
<something>.stop().animate(
{ 'top' : 10 }, 10
);
然而这是行不通的:
var thetop = 'top';
<something>.stop().animate(
{ thetop : 10 }, 10
);
更清楚地说:目前我还不能将CSS属性作为变量传递给动画函数。
为什么下面的工作?
<something>.stop().animate(
{ 'top' : 10 }, 10
);
然而这是行不通的:
var thetop = 'top';
<something>.stop().animate(
{ thetop : 10 }, 10
);
更清楚地说:目前我还不能将CSS属性作为变量传递给动画函数。
当前回答
ES5引用说它不应该工作
注意:ES6的规则已经更改:https://stackoverflow.com/a/2274327/895245
规范:http://www.ecma-international.org/ecma-262/5.1/ # sec-11.1.5
PropertyName : IdentifierName StringLiteral NumericLiteral [...] The production PropertyName : IdentifierName is evaluated as follows: Return the String value containing the same sequence of characters as the IdentifierName. The production PropertyName : StringLiteral is evaluated as follows: Return the SV [String value] of the StringLiteral. The production PropertyName : NumericLiteral is evaluated as follows: Let nbr be the result of forming the value of the NumericLiteral. Return ToString(nbr).
这意味着:
{theTop: 10}与{'theTop': 10}完全相同 PropertyName theTop是一个IdentifierName,所以它被转换为'theTop'字符串值,这是'theTop'的字符串值。 不可能用变量键编写对象初始化式(字面量)。 仅有的三个选项是IdentifierName(扩展为字符串文字),StringLiteral和NumericLiteral(也扩展为字符串)。
其他回答
我已经使用下面的方法来添加一个具有“动态”名称的属性到对象:
var key = 'top';
$('#myElement').animate(
(function(o) { o[key]=10; return o;})({left: 20, width: 100}),
10
);
Key是新属性的名称。
传递给animate的属性对象将是{left: 20, width: 100, top: 10}
这只是使用了其他答案所推荐的必需的[]符号,但是代码行数更少!
2020年更新/ example.com ...
一个更复杂的例子,使用括号和字面量…您可能需要做一些事情,例如使用vue/axios。把文字用括号括起来,所以
['…]']
{
[`filter[${query.key}]`]: query.value, // 'filter[foo]' : 'bar'
}
使用ECMAScript 2015,你现在可以直接在对象声明中使用括号表示:
var obj = {
[key]: value
}
其中key可以是返回值的任何类型的表达式(例如变量)。
你的代码看起来是这样的:
<something>.stop().animate({
[thetop]: 10
}, 10)
在被用作键之前,top将被计算。
在变量周围加上方括号对我来说很好。试试这个
var thetop = 'top';
<something>.stop().animate(
{ [thetop] : 10 }, 10
);
这样也可以实现预期的输出
var jsonobj={}; 变量计数=0; $(document).on('click','#btnadd', function() { jsonobj[count]=new Array({ “1” : $(“#txtone”).val()},{ “2” : $(“#txttwo”).val()}); 计数++; console.clear(); console.log(jsonobj); }); <script src=“https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js”></script> <span>值 1</span><输入 id=“txtone” 类型=“文本”/> <span>值 2</span><输入 id=“txttwo” 类型=“文本”/> <按钮 id=“btnadd”>添加</button>