js鼠标移入移出
2020-06-02
1 min read
<script>
bb=document.getById('aa');
bb.onmouseenter=function(){
this.style.background='#ccc';
}
bb.onmouseleave=function(){
//
}