gpt4 book ai didi

javascript - 将属性保存到变量并将其附加到 DOM 元素

转载 作者:行者123 更新时间:2023-11-30 10:49:48 28 4
gpt4 key购买 nike

下面的代码不起作用,显然对象不能以那种方式保存到变量中!

function styleElement(aNode){
var cssProperty; var cssValue;
for(var c=0; c<2; c++){
cssProperty = c ? backgroundColor : color;
cssValue = c ? 'blue' : '#fff';
aNode.style.cssProperty = cssValue;
}

有人能告诉我正确的方法吗?10x 和 BR,斯蒂芬

最佳答案

您需要使用 bracket notation和字符串:

function styleElement(aNode){
var cssProperty; var cssValue;
for(var c=0; c<2; c++){
cssProperty = c ? "backgroundColor" : "color";
cssValue = c ? 'blue' : '#fff';
aNode.style[cssProperty] = cssValue;
}
}

关于javascript - 将属性保存到变量并将其附加到 DOM 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6176346/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com