This question already has answers here:
Dynamically access object property using variable
(14个回答)
3年前关闭。
我想在样式对象中提交自己的变量。我会告诉你我的意思:
有什么用吗?
More on how to access object properties on MDN.
(14个回答)
3年前关闭。
我想在样式对象中提交自己的变量。我会告诉你我的意思:
var example = background
element.style.example // example is equal to the variable up top
有什么用吗?
最佳答案
假设要定义要动态设置的属性,可以使用以下方法:
var example = 'background';
element.style[example] = 'black';
More on how to access object properties on MDN.
关于javascript - 在js样式对象中设置自己的变量,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40896758/
10-11 23:33