```
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.daohang{
width: 100%;
height: 50px;
background-color: brown;
}
li{
list-style: none;
}
.daohang ul{
padding-right: 25px;
display: block;
color: rgb(255, 255, 255);
width:50%;
height: 50px;
}
.daohang ul li{
float:left;
width:50px;
height: 25px;
padding-right:25px ;
border-radius: 10px 5px 10px 5px;
margin-right: 15px;
text-align: center;
}
</style>
</head>
<body>
<div class="daohang">
<ul>
<li>歌曲</li>
<li>视频</li>
<li>好玩</li>
<li>好吃</li>
<li>好的</li>
</ul>
</div>
</body>
</html>
<script type="text/javascript">
var sbb=document.getElementsByTagName("li");
for(var i=0;i<sbb.length;i++){
+function(ige){ //IIEE方法巡出几个元素的值
sbb[ige].onmouseenter=function(){
for(var j=0;j<sbb.length;j++){
sbb[j].style.backgroundColor="brown"; //移动到元素触发事件的时候先所有遮盖恢复到开始样式
}
sbb[ige].style.backgroundColor="chartreuse"; //当鼠标移上进行修改单一指定的样式
}
sbb[ige].onmouseleave=function(){
for(var j=0;j<sbb.length;j++){
sbb[j].style.backgroundColor="brown"; //移除鼠标事件触发触发事件的时候先所有遮盖恢复到开始样式
}
}
}(i);
}
</script>
```