天天看点

设置鼠标移动到DIV里面的内容上面 DIV标签改变背景色

<style>

.change{background-color:red}

.normal{background-color:white}

</style>

<body>

<div οnmοuseοver="this.className='change'" οnmοuseοut="this.className='normal'">放上来就变色</div>

</body>

继续阅读