我正在编写一个函数来在明暗之间切换身体背景,包括平铺图像和备用背景颜色。在 index.html 中,我的 body 标签是:
<body style="background-color:#111111; background-image:url('dvsup.png');">
看来我必须将我想通过 javascript 更改的样式放在index.html 中,否则它不起作用。至少,不是在 IE9 中。
这是我的 script.js 中的代码片段:
function _(el){return document.getElementById(el);}
// this just acts as shorthand
//here's the problematic function:
function light(){
_("lights").className=
(_("lights").className==="deselected")?
"selected":"deselected";
document.body.style.backgroundColor=
(document.body.style.backgroundColor==="#111111")?
"#EFEFEF":"#111111";
document.body.style.backgroundImage=
(document.body.style.backgroundImage==="url('dvsup.png')")?
"url('dvsupw.png')":"url('dvsup.png')";}
这一切都在工作计算机上的 IE9 中完美运行。当一个按钮调用“light()”时,它会改变背景图像和颜色,以及按钮本身的类。在 Chrome 和 Chromium(在家)中,它分崩离析。将 className 从“selected”更改为“deselected”有效,但其余部分无效。
奇怪的是,如果我将“===”标识符更改为“style.backgroundColor”和“style.backgroundImage”的“=”分配器,在 Chrome 中,调用“light()”时背景图像将更改为“dvsupw.png” ,但不会变回来。
我错过了一些明显的东西吗?这怎么行不通?
如果我不清楚,请告诉我。
谢谢。铝。