js做hover效果

<script>
window.onload=function(){
var oli = document.getElementById("pd_js").getElementsByTagName("li");
for(i=0;i<oli.length;i++){
oli[i].onmouseover=function(){
for(b=0;b<oli.length;b++){
oli[b].className='';
}
this.className="li_1";
}
}
}
</script>

js做hover效果


你可能感兴趣的:(js做hover效果)