美文网首页
表单用法

表单用法

作者: 六饼 | 来源:发表于2017-03-02 15:06 被阅读0次

    表单就是收集用户信息,发送给服务器,实现用户与服务器间的交互。
    表单要写在<form>标签内
    每个表单元素必须设置一个名字;必要时对每个元素设置不同的选定值
    表单有以下几个常用表单项,可以用来输入数据:
    <input type="text"> 单行文本框
    <input type="password"> 密码
    <input type="submit">提交表单按钮
    <input type="image"> 图片提交
    <input type="reset"> 重置按钮
    <input type="button">普通按钮
    <input type="hidden">隐藏元素
    <input type="radio">单选按钮
    <input type="checkbox">复选框
    <input type="file">文件域
    <select>...</select>列表框
    <textarea>...</textarea>多行文本框

    重置按钮格式:
    <input type="reset" name="名称" value="预设内容">

    注:单选按钮
    使用方式:使用name相同的一组单选按钮,不同radio设定不同的value值,这样通过取指定name的值就可以知道谁被选中了,不用单独的判断。单选按钮的元素值由value属性显式设置,表单提交时,选中项的value和name被打包发送,不显式设置value

    type=hidden
    通常称为隐藏域:如果一个非常重要的信息需要被提交到下一页,但又不能或者无法明示的时候。
    总之,你在页面中是看不到hidden在哪里。最有用的是hidden的值。
    <form name="form1">
    your hidden info here:
    <input type="hidden" name="yourhiddeninfo" value="cnbruce.com">
    </form>
    <script>
    alert("隐藏域的值是 "+document.form1.yourhiddeninfo.value)
    </script>。

    相关文章

      网友评论

          本文标题:表单用法

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