W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<html> <head> <script type="text/javascript"> function gettip(txt) { document.getElementById('tip').innerHTML='W3School 提供有关 WEB 标准和脚本技术的教程' } </script> </head> <body> <p>请双击 "W3School.org.cn"</p> <table> <tr> <th ondblclick="gettip()" valign="top">W3School.org.cn</th> <th id="tip"> </th> </tr> </table> </body> </html>