建立簡單的表單Demo
阿新 • • 發佈:2018-11-20
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" nameDemo Code="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>
頁面效果如下:
Title