form標籤用於建立供使用者輸入的HTML表單,表單可以用來傳輸資料到伺服器。 form元素是區塊級元素,其前後會產生折行;可包含:input、button、select、option、textarea、label等表單元素。
html form標籤怎麼用?
html form標籤用於為使用者輸入建立 HTML 表單,表單可以用於向伺服器傳輸資料。
說明:表單能夠包含 input 元素,例如文字欄位、複選框、單選框、提交按鈕等等。表單還可以包含 button、select、option、optgroup、menus、textarea、fieldset、legend 和 label 元素。表單用於向伺服器傳輸資料。
註解:form 元素是區塊級元素,其前後會產生折行。
html form標籤 範例
<!DOCTYPE html> <html> <body> <form action=""> 用户名:<br> <input type="text" name="firstname" value="Mickey"> <br><br> 密码:<br> <input type="password" name="password"> <br><br> <input type="submit" value="提交"> </form> </body> </html>
輸出:
以上是html form標籤怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!