1.鼠标

1-1 mouse(onmouseover onmouseout)

  1. <p id="p">hello world</p>
  2. <script>
  3. var p=document.getElementById("p");
  4. p.onmouseover=function(){
  5. this.style.backgroundColor="red"
  6. }
  7. p.onmouseout=function(){
  8. this.style.backgroundColor="blue"
  9. }
  10. </script>