我想检查元素的背景和文本颜色是否匹配,一切都很好,除了check();
在第二次鼠标单击后调用!
function check() {
if(document.getElementById("cimg").style.backgroundColor == document.getElementById("cimg").style.color) {
alert("Matched");
}
}
function show() {
document.getElementById("cimg").style.backgroundColor = "blue";
}
我的 Div(实际上是一个图像按钮):
<div class="blue" id="bg1" onClick="check(); return show();" title="Blue"></div>
cimg 是div
我要查看更改的 ID。PS:欢迎任何 jQuery/CSS/PHP 答案!