有好几种方法,分享个简单的给你。
<script type="text/javascript">
function bgshow(tagi){
if (tagi.style.display == "none") {
tagi.style.background = "#000000"; //这里填写颜色
}else{
tagi.style.background = "#ffffff"; //颜色
}
}
</script>
<div id="x1" onmouseover="bgshow(x1)">111</div>
<div id="x2" onmouseover="bgshow(x2)">222</div>
<div id="x3" onmouseover="bgshow(x3)">333</div>
如果你的DIV把不是特殊用途的话,那就直接用样式就可以啦
<style>
.x1{ background:#000}
.x2{ background:#fff}
</style>
<div onmouseover="className='x1'" onmouseout="className='x2'">111</div>
追问这样增加一个div就得给它一个id=x?我要是想做不定div数量时怎么做,
追答哦。那个也简单。我等下给你一个万能代码
我以为你指做简单几个的
本回答被网友采纳