文字框和單選框
阿新 • • 發佈:2021-11-04
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>註冊</title> </head> <body> <!--表單form action:表單提交的位置,可以是網站,也可以說是一個請求處理地址 method:post,get 提交方式 get方式提交:我們可以在url看到我們提交的資訊,不安全,高效 post:比較安全,傳輸大檔案 --> <form action="1.我的第一一個網頁.html" method="post" > <!-- 文字輸入框:input type = "text" value:預設的初始值 maxlength:最大長度 size:文字框長度 --> <p>賬戶: <input type="text" name="username" value="我是王剛" maxlength = 8 size="30"></p> <!-- 密碼輸入框:input type="password" --> <p>密碼: <input type="password" name="pwd"></p> <p> <input type="submit"> <input type="reset"> <!-- 單選框標籤 radio:單選框標籤 value:單選框的值 name:表示組 --> <input type="radio" value="boy" name="sex"/>男 <input type="radio" value="girl" name="sex"/>女 </form> </p> </body> </html>