var clea=document.getElementById("clearfix");
var cl=clea.getElementsByTagName("li");
var show=clea.getElementsByClassName("show");
for(var i=0;i<cl.length;i++){
cl[i].onmouseover=function() {
this.style.marginTop = "-35px"; 鼠标移入改变<li>的高度
show.style.backgroundColor="red" (这是错误代码)鼠标移入改变<li>内的div样式
}
cl[i].onmouseout=function(){
this.style.marginTop="0px";
}
添加回答
举报
0/150
提交
取消