博客列表 >20200207学习笔记3(表单)

20200207学习笔记3(表单)

V
V原创
2020年02月07日 15:05:19443浏览

表单

表单是用户与网站数据交换的工具

表单标签及属性

1.form :action、 method
2.input :type
3.button

Demo

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>form</title>
  6. </head>
  7. <body>
  8. <h3>用户注册</h3>
  9. <form action=" " method="post" >
  10. <p>
  11. <label for="user">账号:</label>
  12. <input type="text" name="username" id="user" />
  13. </p>
  14. <p>
  15. <label for="pwd">密码:</label>
  16. <input type="password" name="password" id="pwd" />
  17. </p>
  18. <p><button>提交</button></p>
  19. </form>
  20. </body>
  21. </html>

4.select(name)+option(value)

Demo

  1. <p>
  2. <select name="level" id="">
  3. <option value="1">第一名</option>
  4. <option value="2">第二名</option>
  5. <option value="3" selected>第三名</option> <!--selected,默认选中-->
  6. <option value="4">第四名</option>
  7. </select>
  8. </p>

5.radio 单选按钮

Demo

  1. <p>
  2. <label for="female">性别:</label> <!--通过for绑定female,当点击“性别”两个字时,选中“女”按钮-->
  3. <input type="radio" name="gender" id="male" checked><label for="male"></label> <!--checked,默认选中-->
  4. <input type="radio" name="gender" id="female"><label for="female"></label>
  5. </p>

6.checkbox 复选框

Demo

  1. <!--复选框里的名称(name)属性用数组标注-->
  2. <p>
  3. <input type="checkbox" name="hobby[]" id="shoot"/><label for="shoot">摄影</label>
  4. <input type="checkbox" name="hobby[]" id="travle" checked/><label for="movie">看电影</label><!--checked,默认选中-->
  5. <input type="checkbox" name="hobby[]" id="running"/><label for="running">健身</label>
  6. </p>

7.hidden 隐藏域

Demo

  1. <p>
  2. <input type="hidden" name="user_id" value="101" />
  3. </p>

完整案例

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>form</title>
  6. </head>
  7. <body>
  8. <h3>用户注册</h3>
  9. <form action=" " method="post" >
  10. <p>
  11. <label for="user">账号:</label>
  12. <input type="text" name="username" id="user" />
  13. </p>
  14. <p>
  15. <label for="pwd">密码:</label>
  16. <input type="password" name="password" id="pwd" />
  17. </p>
  18. <!--列表菜单-->
  19. <p>
  20. <select name="level" id="">
  21. <option value="1">第一名</option>
  22. <option value="2">第二名</option>
  23. <option value="3" selected>第三名</option><!--selected,默认选中-->
  24. <option value="4">第四名</option>
  25. </select>
  26. </p>
  27. <!--隐藏域-->
  28. <p>
  29. <input type="hidden" name="user_id" value="101" />
  30. </p>
  31. <!--单选按钮-->
  32. <p>
  33. <label for="female">性别:</label> <!--通过for绑定female,当点击“性别”两个字时,选中“女”按钮-->
  34. <input type="radio" name="gender" id="male" checked><label for="male"></label> <!--checked,默认选中-->
  35. <input type="radio" name="gender" id="female"><label for="female"></label>
  36. </p>
  37. <!--复选框-->
  38. <!--复选框里的名称(name)属性用数组标注-->
  39. <p>
  40. <input type="checkbox" name="hobby[]" id="shoot"/><label for="shoot">摄影</label>
  41. <input type="checkbox" name="hobby[]" id="travle" checked/><label for="movie">看电影</label><!--checked,默认选中-->
  42. <input type="checkbox" name="hobby[]" id="running"/><label for="running">健身</label>
  43. </p>
  44. <!--按钮-->
  45. <p><button>提交</button></p>
  46. </form>
  47. </body>
  48. </html>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议