目錄
- 簡介
- 表單的組成部分
- 使用 HTML 的無障礙表單
- 結論
介紹
表單是建立網站不可或缺的一部分。它們用於在用戶提交詳細資訊時收集數據。表單對於使用者提交註冊表單、登入表單、訂閱電子報或發送訊息以接收回饋的互動非常重要。建立易於存取的表單對每個人都很重要,尤其是螢幕閱讀器,可以毫無問題地填寫表單。
表單的組成部分
表單由不同的組件組成,例如
-
form:這是接受所有其他表單元素(如輸入標籤、提交按鈕、文字區域、複選框和單選按鈕)的容器
-
input:這是接受使用者詳細資料的 HTML 元素。根據輸入的目的提供輸入標籤;文字、數字、密碼、電子郵件等
<form>
<input type="text" />
<input type="email" />
<input type="password" />
<input type="radio" />
<input type="checkbox" />
<input type="file" />
<input type="range" />
<input type="color" />
<input type="date"/>
</form>
登入後複製
-
label:此標籤給出了填充輸入的詳細資訊的輪廓。它與輸入標籤相關聯。
<form>
<label for="email">Email</label>
<input type="email">
登入後複製
-
textarea: this is an multi-line input tag that accept 524,288 characters by default except the maxlength attribute is set up to a value. It is used to accept reviews, messages and comments from the users
<form>
<label for="message">Message:</label>
<textarea>
登入後複製
-
select: this element is for creating a dropdown in which the users are able to select one option by default or more options when the attribute multiple is being used.
-
checkbox: this element allow users to select one or more options.
<form>
<label for="subscribe"></label>
<input type="checkbox">
登入後複製
-
button: this tag will the users the opportunity to submit their details upon completion. These details are submitted to server.
<form>
<button type="submit">Submit</button>
</form>
登入後複製
使用 HTML 的可存取表單
使用正確的語意標籤,例如
以上是如何使用 HTML 和 CSS 設計可存取的表單的詳細內容。更多資訊請關注PHP中文網其他相關文章!