要建立表格標題,請使用 DOM createCaption() 方法。
您可以嘗試執行以下命令程式碼來學習如何建立表格標題 -
#現場示範
<!DOCTYPE html> <html> <head> <script> function captionFunc(x) { document.getElementById(x).createCaption().innerHTML = "Demo Caption"; } </script> </head> <body> <table style="border:2px solid black" id="newtable"> <tr> <td>One</td> <td>Two</td> </tr> <tr> <td>Three</td> <td>Four</td> </tr> <tr> <td>Five</td> <td>Six</td> </tr> </table> <p> <input type="button" onclick="captionFunc('newtable')" value="Display Table Caption"> </p> </body> </html>
以上是如何使用JavaScript DOM建立表格標題?的詳細內容。更多資訊請關注PHP中文網其他相關文章!