JS 鼠标移动到a标签上背景颜色改变

2024年11月19日 08:28
有1个网友回答
网友(1):

onload=function(){
var as = document.getElementsByTagName("a");
for(var i=0;ias[i].onmouseenter=function(){
this.style.backgroundColor="red";

}

as[i].onmouseleave=function(){
this.style.backgroundColor="none";

}

}
}