HTML 的表格標籤主要用於顯示結構化的數據,如報表、日程表等。表格由行(<tr>
)和單元格(<td>
)組成,並可以添加表頭(<th>
)來增強可讀性。以下是常用表格標籤及其用途:
<table>
(表格標籤)<tr>
(表格行標籤)<td>
(表格單元格標籤)<th>
(表格表頭標籤)<thead>
(表頭區域標籤)<th>
標籤。<tbody>
(表體區域標籤)<tr>
行。<tfoot>
(表尾區域標籤)<table>
<thead>
<tr>
<th>姓名</th>
<th>年齡</th>
<th>職業</th>
</tr>
</thead>
<tbody>
<tr>
<td>張三</td>
<td>30</td>
<td>工程師</td>
</tr>
<tr>
<td>李四</td>
<td>25</td>
<td>設計師</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="3">這是表格的尾部</td>
</tr>
</tfoot>
</table>
表單是網頁與用戶交互的重要部分,用於收集用戶輸入的數據,並提交到伺服器進行處理。以下是一些主要的表單標籤及其用途:
<form>
(表單標籤)action
(指定表單數據提交的URL)和method
(提交方法,如GET
或POST
)。<input>
(輸入標籤)type="text"
)、密碼(type="password"
)、按鈕(type="button"
)、勾選框(type="checkbox"
)等。<button>
(按鈕標籤)<textarea>
(多行文本框標籤)<select>
和 <option>
(下拉選單標籤)<select>
定義一個下拉選單,而 <option>
定義選單中的各個選項。<label>
(標籤標籤)<fieldset>
和 <legend>
(字段集標籤和說明標籤)<fieldset>
用於將相關的表單元素分組,<legend>
為這些元素提供描述。<form action="/submit-form" method="post">
<fieldset>
<legend>個人信息</legend>
<label for="name">姓名:</label>
<input type="text" id="name" name="name"><br>
<label for="age">年齡:</label>
<input type="number" id="age" name="age"><br>
<label for="job">職業:</label>
<select id="job" name="job">
<option value="engineer">工程師</option>
<option value="designer">設計師</option>
</select><br>
<input type="submit" value="提交">
</fieldset>
</form>