gpt4 book ai didi

javascript - 如何让 firefox 使用样式 ['attribute-name' ] = 设置样式属性?

转载 作者:技术小花猫 更新时间:2023-10-29 12:03:24 26 4
gpt4 key购买 nike

在此example Chrome 将背景设置为红色,firefox 和 IE 不会。

尝试:

document.getElementById("firefoxDiv").style['backgroundColor'] = "Red";

document.getElementById("firefoxDiv").style['background-color'] = "Red";

我更希望能够使用在外部 CSS 中使用的相同语法background-color 与内联使用 javascript .style.backgroundColor =

感谢您的帮助!

注意: NO 请使用 jQuery。

最佳答案

使用.style.setProperty(propertyName, value [, priority])而不是 expando 属性。

例子:

document.getElementById("firefoxDiv").style.setProperty('background-color', 'red');

关于javascript - 如何让 firefox 使用样式 ['attribute-name' ] = 设置样式属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12272288/

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