ondblclick

  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function gettip(txt)
  5. {
  6. document.getElementById('tip').innerHTML='jishuchi 提供有关 WEB 标准和脚本技术的教程'
  7. }
  8. </script>
  9. </head>
  10.  
  11. <body>
  12.  
  13. <p>请双击 "jishuchi.com"</p>
  14. <table>
  15. <tr>
  16. <th ondblclick="gettip()" valign="top">jishuchi.com</th>
  17. <th id="tip"> </th>
  18. </tr>
  19. </table>
  20.  
  21. </body>
  22. </html>