在js样式对象中设置自己的变量

时间:2016-11-30 19:38:37

标签: javascript css variables

我想在样式对象中提交自己的变量。我会告诉你我的意思:

var example = background
element.style.example // example is equal to the variable up top

有没有这样做?

2 个答案:

答案 0 :(得分:1)

您可以使用括号表示法

var example = "background";
element.style[example] = "#fff";

答案 1 :(得分:1)

假设您要定义要动态设置的属性,可以使用以下方法:

var example = 'background';
element.style[example] = 'black';

More on how to access object properties on MDN.