运行 ❯
获取您的
自有
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> table, th, td { border: 1px solid black; } </style> </head> <body> <h3>A demonstration of how to access a CAPTION element</h3> <table> <caption id="myCaption">Monthly savings</caption> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$50</td> </tr> </table> <p>Click the button to set the color of the caption to red.</p> <button onclick="myFunction()">Try it</button> <script> function myFunction() { var x = document.getElementById("myCaption"); x.style.color = "red"; } </script> </body> </html>