1. 程式人生 > >建立簡單的表單Demo

建立簡單的表單Demo

 1 <!DOCTYPE html>
 2 <html lang="en">
 3 <head>
 4     <meta charset="UTF-8">
 5     <title>Title</title>
 6 </head>
 7 <body>
 8 <form action="http://www..." method="get">
 9 <p>
10 <label>姓名:</label><input type="text" name
="username" /> 11 </p> 12 <p> 13 <label>密碼:</label><input type="password" name="password" /> 14 </p> 15 <p> 16 <label>性別:</label> 17 <input type="radio" name="gender" value="0" />18 <input type="radio" name="gender" value="1" />19 </
p> 20 <p> 21 <label>愛好:</label> 22 <input type="checkbox" name="like" value="sing" /> 唱歌 23 <input type="checkbox" name="like" value="run" /> 跑步 24 <input type="checkbox" name="like" value="swiming" /> 游泳 25 </p> 26 <p> 27 <label>照片:</label> 28
<input type="file" name="person_pic"> 29 </p> 30 <p> 31 <label>個人描述:</label> 32 <textarea name="about"></textarea> 33 </p> 34 <p> 35 <label>籍貫:</label> 36 <select name="site"> 37 <option value="0">北京</option> 38 <option value="1">上海</option> 39 <option value="2">廣州</option> 40 <option value="3">深圳</option> 41 </select> 42 </p> 43 <p> 44 <input type="submit" name="" value="提交"> 45 <input type="reset" name="" value="重置"> 46 </p> 47 </form> 48 </body> 49 </html>
Demo Code

頁面效果如下:

Title

唱歌 跑步 游泳


表單應用概解:

表單用於蒐集不同型別的使用者輸入,表單由不同型別的標籤組成,相關標籤及屬性用法如下:

1、<form>標籤 定義整體的表單區域

  • action屬性 定義表單資料提交地址
  • method屬性 定義表單提交的方式,一般有“get”方式和“post”方式

2、<label>標籤 為表單元素定義文字標註

3、<input>標籤 定義通用的表單元素

  • type屬性
    • type="text" 定義單行文字輸入框
    • type="password" 定義密碼輸入框
    • type="radio" 定義單選框
    • type="checkbox" 定義複選框
    • type="file" 定義上傳檔案
    • type="submit" 定義提交按鈕
    • type="reset" 定義重置按鈕
    • type="button" 定義一個普通按鈕
    • type="hidden" 定義一個隱藏的表單域,用來儲存值
  • value屬性 定義表單元素的值
  • name屬性 定義表單元素的名稱,此名稱是提交資料時的鍵名

4、<textarea>標籤 定義多行文字輸入框

5、<select>標籤 定義下拉表單元素

6、<option>標籤 與<select>標籤配合,定義下拉表單元素中的選項