W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<html> <head> <script type="text/javascript"> function alertAbbr() { alert(document.getElementById('td1').abbr); } </script> </head> <body> <table border="1"> <tr> <th>Firstname</th> <th>Lastname</th> </tr> <tr> <td id="td1" abbr="Some text">Peter</td> <td id="td2">Griffin</td> </tr> </table> <br /> <input type="button" onclick="alertAbbr()" value="Alert abbr" /> </body> </html>