运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> table, th { border: 1px solid black; } </style> </head> <body> <p>Click the button to change the value of the headers attribute of th with id "myTh".</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()">Try it</button> <p id="demo"></p> <script> function myFunction() { document.getElementById("myTh").headers = "newValue"; document.getElementById("demo").innerHTML = "The value of the headers attribute was changed from 'name' to 'newValue'."; } </script> </body> </html>