改变内部的 HTML

  1. <html>
  2. <head>
  3.  
  4. <script type="text/javascript">
  5. function nameon()
  6. {
  7. document.getElementById('h2text').innerHTML="欢迎!"
  8. }
  9. function nameout()
  10. {
  11. document.getElementById('h2text').innerHTML="今天过得怎么样?"
  12. }
  13. </script>
  14.  
  15. </head>
  16. <body>
  17. <h2 id="h2text" onmouseout="nameout()"
  18. onmouseover="nameon()">
  19. 请把鼠标移动到文本上!</h2>
  20. </body>
  21. </html>