gpt4 book ai didi

javascript - Chrome 不处理 .style = "background-color:#333223;"

转载 作者:太空宇宙 更新时间:2023-11-03 23:30:12 26 4
gpt4 key购买 nike

在下面的代码中,脚本打开和关闭一个 div。 .style代码,控制被切换的div的父元素的背景颜色开启和关闭。该代码在 Opera 中有效,但在 Chrome 中无效,我无法做到研究(搜索)解决方案。

我当然可以继续写其他代码来实现我需要的,但这有我的现在的好奇心。

function CheckOutOpn(){
var Inny = document.getElementById("RightPaneASxOrderForm");
MVxCheckOutForm();
CDxButtonOpnChkOut();
MVxCLOSExBttnChkout();
Inny.style = "background-color:#332223;";
}

function CLOSExCheckOut(){
var Inny = document.getElementById("RightPaneASxOrderForm");
MVxButtonOpnChkOut();
CDxCLOSExBttnChkout();
CDxOrderFormItself();
Inny.style = "background-color:#33B32E;";
}

最佳答案

我认为你应该使用:

Inny.style.backgroundColor = "#332223";

https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement.style

... Except in Opera, styles can not be set by assigning a string to the (read only) style property, as in elt.style = "color: blue;". This is because the style attribute returns a CSSStyleDeclaration object.

关于javascript - Chrome 不处理 .style = "background-color:#333223;",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25604283/

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