简单教程
提交运行
代码编辑器:
<style> table,th { border:1px solid black; } </style> <p>点击按钮改变 id 为 "myTh" 的 th 的 headers 属性的值</p> <table id="myTable"> <tr> <th id="name" colspan="3">Name</th> </tr> <tr> <th id="myTh" headers="fname">First name</th> <th headers="mname">Middle name</th> <th headers="lname">Last name</th> </tr> </table> <br> <button onclick="myFunction()">尝试一下</button> <p id="demo"></p> <script> function myFunction() { document.getElementById("myTh").headers="newValue"; document.getElementById("demo").innerHTML="headers 属性的值从 'name' 变为 'newValue'。"; } </script>
运行结果: