12345678910111213141516171819202122232425262728293031323334 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>Document</title>
- <link rel="stylesheet" href="common.css" />
- </head>
- <body>
- <div class="user-list">
- <table>
- <!-- thead标签给table定义表头 -->
- <thead>
- <tr>
- <th>头像</th>
- <th>姓名</th>
- <th>密码</th>
- <th>年龄</th>
- <th>性别</th>
- </tr>
- </thead>
- <tbody id="listBody">
- <!-- 动态添加数据 -->
- </tbody>
- </table>
- <button id="btn">获取数据</button>
- </div>
- <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
- <!-- 上面引入axios库后,会在全局对象上添加一个 axios 函数对象 -->
- <script src="2.js"></script>
- </body>
- </html>
|