美文网首页
form表单的一些用法

form表单的一些用法

作者: LeeoZz | 来源:发表于2017-04-25 00:26 被阅读0次

    html表单用于收集用户输入的数据。
    用<form>元素定义html表单:

    <fomr>
    </form>
    

    form表单包含许多表单元素,如:<input> <select><option><textarea><button>等
    form表单包含许多属性:
    action 属性定义在提交表单时执行的动作;
    method 属性规定在提交表单时所用的 HTTP 方法(get或post);
    target规定action属性中地址的目标(默认:_self)等。

    <input>是最重要的表单元素,根据type属性不一同,有许多不同类型的<input>元素:
    <input type="text"> 定义供文本输入的单行输入字段
    <input type="password"> 定义密码字段
    <input type="submit"> 定义提交表单按钮
    <input type="radio"> 定义单选按钮
    <input type="checkbox"> 定义复选框
    <input type="button"> 定义按钮

    <input>元素有许多属性:
    value属性为<input>元素设定值。
    对于不同的输入类型,value 属性的用法也不同:
    type="button", "reset", "submit" 定义按钮上的显示的文本;
    type="text", "password", "hidden" 定义输入字段的初始值;
    type="checkbox", "radio", "image" 定义与输入相关联的值;
    <input type="checkbox"> 和 <input type="radio"> 中必须设置 value 属性。

    *注意!<input type="hidden">为隐藏域,其携带信息不被用户所看到的,在用户提交表单时一并提交到服务器,一般用于传输和临时存放数据。

    相关文章

      网友评论

          本文标题:form表单的一些用法

          本文链接:https://www.haomeiwen.com/subject/gicmzttx.html