当你看到下面的例子时,事情就会清楚了。
function AddStyle(prob, value) {
Elem = document.getElementById('box');
Elem.style.prob = value;
}
// Here is, when usage.
AddStyle('backgroundColor', 'red');
正如您在前面的示例中看到的,我们有两个参数(prob
是属性名称),(value
是属性的值)。
该示例不起作用,也没有发生错误。我确定这一行Elem.style.prob = value;
尤其是这里的问题style.prob
。