為啥17和23行報錯啊
<!DOCTYPE html>
<html>
<head>
? ? <meta charset="UTF-8">
? ? <title>使用thead、tbody、tfoot標簽</title>
</head>
<body>
? ? <table border="1">
? ? <thead>
? ? ? ? <tr>
? ? ? ? ? ? <th>科目</th>
? ? ? ? ? ? <th>分數</th>
? ? ? ? </tr>
? ? </thead>
? ? <tboday>
? ? ? ? <tr>
? ? ? ? ? ? <td>語文</td>
? ? ? ? ? ? <td>數學</td>
? ? ? ? ? ? <td>英語</td>
? ? ? ? </tr>
? ? </tboday>? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??
? ? </table>
</body>
</html>
2024-03-12
<tbody></tbody>標簽寫錯
2023-09-06
<table border="1">
? ? <thead>
? ? ? ? <tr>
? ? ? ? ? ? <th>科目</th>
? ? ? ? ? ? <th>分數</th>
? ? ? ? </tr>
? ? </thead>
? ? <tbody>
? ? ? ? <tr>
? ? ? ? ? ? <td>語文</td>
? ? ? ? ? ? <td>99</td>
? ? ? ? </tr>
? ? ? ? ? ? ? ? <tr>
? ? ? ? ? ? <td>數學</td>
? ? ? ? ? ? <td>60</td>
? ? ? ? </tr>
? ? </tbody>
? ? <tfoot>
? ? ? ? <tr>
? ? ? ? ? ? <td>總分</td>
? ? ? ? ? ? <td>159</td>
? ? ? ? </tr>
? ? </tfoot>
</table>??
2023-07-12
而且你的第一行只有兩個數據,第二行有三個數據
2023-07-03
<tbody>不是<tboday>
2023-05-11
<tbody>代碼輸入錯誤