我正在尝试切换和更改div的颜色我切换背景颜色。我该怎么做呢。我已经按照我在网上看过的一个例子,只是添加到我原来的切换脚本中,但我似乎无法让它工作。
//turn entire div into toggle
function toggle_visibility(id) {
var e = document.getElementById(id);
if (e.style.display == "block" || e.style.display == "")
e.style.display = "none";
else
e.style.display = "block";
document.body.style.backgroundColor = "red";
}else{
e.style.display = "none";
document.body.style.backgroundColor = "white";
}
return( false );
}