zoukankan      html  css  js  c++  java
  • 14-3

    input系列

    input type='text' - name属性 value='alex',默认值
    input type='password' - name属性 value='password',默认值
    input type='submit' - value='提交' 提交按钮,提交表单
    input type='button' - value='登录' 按钮

    input type='radio' - 单选框 value, 默认值checked="checked",name属性(name相同则互斥)
    input type='checkbox' -复选框 value,默认值checked="checked",name属性(批量获取数据)
    input type='file' - 依赖form表单的一个属性 enctype="multipart/form-data"
    input type='reset' - 重置

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Title</title>
    </head>
    <body>
        <form action="https://www.sogou.com/web">
            <input type="text" name="query" />
            <input type="submit" value="搜索" />
        </form>
    </body>
    </html>
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Title</title>
    </head>
    <body>
        <form enctype="multipart/form-data">
            <div>
                <input type="text" name="user" />
                <p>请选择性别:</p>
                男:<input type="radio" name="gender" value="1" />
                女:<input type="radio" name="gender" value="2" checked="checked"/>
                Alex:<input type="radio" name="gender" value="3" />
                <p>爱好</p>
                篮球:<input type="checkbox" name="favor" value="1" />
                足球:<input type="checkbox" name="favor" value="2"  checked="checked" />
                排球:<input type="checkbox" name="favor" value="3" />
                台球:<input type="checkbox" name="favor" value="4"  checked="checked" />
                网球:<input type="checkbox" name="favor" value="5" />
                <p>技能</p>
                C:<input type="checkbox" name="skill" value="1" checked="checked" />
                Python:<input type="checkbox" name="skill" value="2" />
                <p>上传文件</p>
                <input type="file" name="fname" />
            </div>
            <input type="submit" value="提交" />
            <input type="reset" value="重置" />
        </form>
    </body>
    </html>
  • 相关阅读:
    然乌湖
    邦达 八宿
    芒康
    巴塘
    禾尼乡 所波大叔
    世界高城 理塘
    相克宗 藏民家
    骑行川藏--新都桥&塔公草原
    d 3
    D2
  • 原文地址:https://www.cnblogs.com/python-abc/p/11735892.html
Copyright © 2011-2022 走看看