• <bdo id='FDRu0'></bdo><ul id='FDRu0'></ul>

    1. <small id='FDRu0'></small><noframes id='FDRu0'>

      <i id='FDRu0'><tr id='FDRu0'><dt id='FDRu0'><q id='FDRu0'><span id='FDRu0'><b id='FDRu0'><form id='FDRu0'><ins id='FDRu0'></ins><ul id='FDRu0'></ul><sub id='FDRu0'></sub></form><legend id='FDRu0'></legend><bdo id='FDRu0'><pre id='FDRu0'><center id='FDRu0'></center></pre></bdo></b><th id='FDRu0'></th></span></q></dt></tr></i><div id='FDRu0'><tfoot id='FDRu0'></tfoot><dl id='FDRu0'><fieldset id='FDRu0'></fieldset></dl></div>
      <tfoot id='FDRu0'></tfoot>
        <legend id='FDRu0'><style id='FDRu0'><dir id='FDRu0'><q id='FDRu0'></q></dir></style></legend>

      1. html表单标签详细介绍以及实例代码

        时间:2024-10-16
              <tbody id='hR3gm'></tbody>
          • <tfoot id='hR3gm'></tfoot>
              <bdo id='hR3gm'></bdo><ul id='hR3gm'></ul>
                <i id='hR3gm'><tr id='hR3gm'><dt id='hR3gm'><q id='hR3gm'><span id='hR3gm'><b id='hR3gm'><form id='hR3gm'><ins id='hR3gm'></ins><ul id='hR3gm'></ul><sub id='hR3gm'></sub></form><legend id='hR3gm'></legend><bdo id='hR3gm'><pre id='hR3gm'><center id='hR3gm'></center></pre></bdo></b><th id='hR3gm'></th></span></q></dt></tr></i><div id='hR3gm'><tfoot id='hR3gm'></tfoot><dl id='hR3gm'><fieldset id='hR3gm'></fieldset></dl></div>

                <small id='hR3gm'></small><noframes id='hR3gm'>

                <legend id='hR3gm'><style id='hR3gm'><dir id='hR3gm'><q id='hR3gm'></q></dir></style></legend>
                • 表单用于搜集不同类型的用户输入,表单由不同类型的标签组成,相关标签及属性用法如下:

                  1、<form>标签 定义整体的表单区域

                  • action属性 定义表单数据提交地址
                  • method属性 定义表单提交的方式,一般有“get”方式和“post”方式

                  2、<label>标签 为表单元素定义文字标注

                  • for属性的值与<input>标签的id属性的值一致时,点击<label>标签标注的文字可以激活输入框

                  3、<input>标签 定义通用的表单元素

                  • type属性
                    • type="text" 定义单行文本输入框
                    • type="password" 定义密码输入框
                    • type="radio" 定义单选框
                    • type="checkbox" 定义复选框
                    • type="file" 定义上传文件
                    • type="submit" 定义提交按钮
                    • type="reset" 定义重置按钮
                    • type="button" 定义一个普通按钮
                    • type="image" 定义图片作为提交按钮,用src属性定义图片地址(图片按钮,概率会提交两次,不建议使用)
                    • type="hidden" 定义一个隐藏的表单域,用来存储值
                  • name属性 定义表单元素的名称,此名称是提交数据时的键名
                  • value属性 定义表单元素的值,此值是不能输入内容类型的标签提交数据时的值。比如:单选框、复选框、下拉框等

                  4、<textarea>标签 定义多行文本输入框

                  5、<select>标签 定义下拉表单元素

                  6、<option>标签 与<select>标签配合,定义下拉表单元素中的选项

                  注册表单实例:

                  <form action="http://www..." method="get">
                      <p>
                          <label for="username_id">姓名:</label>
                          <input type="text" name="username" id="username_id" />
                      </p>
                      <p>
                          <label for="password_id">密码:</label>
                          <input type="password" name="password" id="password_id" />
                      </p>
                      <p>
                          <label>性别:</label>
                          <input type="radio" name="gender" value="0" id="gender_0" /> <label for="gender_0">男</label>
                          <input type="radio" name="gender" value="1" id="gender_1" /> <label for="gender_1">女</label>
                      </p>
                      <p>
                          <label>爱好:</label>
                          <input type="checkbox" name="like" value="sing" /> 唱歌
                          <input type="checkbox" name="like" value="run" /> 跑步
                          <input type="checkbox" name="like" value="swiming" /> 游泳
                      </p>
                      <p>
                          <label>照片:</label>
                          <input type="file" name="person_pic">
                      </p>
                      <p>
                          <label>个人描述:</label>
                          <textarea name="about"></textarea>
                      </p>
                      <p>
                          <label>籍贯:</label>
                          <select name="site">
                              <option value="0">北京</option>
                              <option value="1">上海</option>
                              <option value="2">广州</option>
                              <option value="3">深圳</option>
                          </select>
                      </p>
                      <p>
                          <input type="submit" name="" value="提交">
                          <!-- input类型为submit定义提交按钮  
                              还可以用图片控件代替submit按钮提交,一般会导致提交两次,不建议使用。如:
                          <input type="image" src="xxx.gif">
                          -->
                          <input type="reset" name="" value="重置">
                      </p>
                  </form>
                  上一篇:Js正则表达式过滤特殊字符、表情 下一篇:没有了

                  相关文章

                  1. <tfoot id='4gnUi'></tfoot>

                    <small id='4gnUi'></small><noframes id='4gnUi'>

                      <bdo id='4gnUi'></bdo><ul id='4gnUi'></ul>

                      <i id='4gnUi'><tr id='4gnUi'><dt id='4gnUi'><q id='4gnUi'><span id='4gnUi'><b id='4gnUi'><form id='4gnUi'><ins id='4gnUi'></ins><ul id='4gnUi'></ul><sub id='4gnUi'></sub></form><legend id='4gnUi'></legend><bdo id='4gnUi'><pre id='4gnUi'><center id='4gnUi'></center></pre></bdo></b><th id='4gnUi'></th></span></q></dt></tr></i><div id='4gnUi'><tfoot id='4gnUi'></tfoot><dl id='4gnUi'><fieldset id='4gnUi'></fieldset></dl></div>
                      <legend id='4gnUi'><style id='4gnUi'><dir id='4gnUi'><q id='4gnUi'></q></dir></style></legend>