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