简单教程
提交运行
代码编辑器:
<style> table,th,td{ border:1px solid black; } </style> <h3>访问 TH 元素</h3> <table> <tr> <th id="myTh">Name</th> </tr> <tr> <td>John</td> </tr> </table> <p>点击按钮改变 TH 元素的文本</p> <button onclick="myFunction()">尝试一下</button> <p id="demo"></p> <script> function myFunction(){ var x = document.getElementById("myTh"); x.innerHTML = "新的表头"; } </script>
运行结果: