文章目录 案例 动态表格 往期回顾 案例 动态表格 显示一行 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <table border="1"> <thead> <tr> <th> ID </th> <th> 姓名 </th> <th> 年龄 </th> </tr> </thead> <tbody id="body"> </tbody> </table> <script