• 01-HTML基础与进阶-day5-录像264


    09表单.html

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Document</title>
    </head>
    <body>
        <form>
            用户名:<input type="text" value="请输入用户名"/><br />
            密码:<input type="password" /><br />
            性别:
                 <!--单选框 达到互斥的话 设置相同的name属性值-->
                 <input type="radio" name="sex"/><input type="radio" name="sex"/><input type="radio" name="sex"/>未知
                 <input type="radio" name="sex"/>人妖
                 <br/> 
            爱好:
                <input type="checkbox" />编程
                <input type="checkbox" />money
                <input type="checkbox" />美女帅哥
                <input type="checkbox" />乐于助人<br/>
            个人简介<textarea name="" id="" cols="30" rows="10"></textarea>    <br />
            <select name="" id="">
                <option value="">请选择你所在的城市</option>
                <option value="">南京</option>
                <option value="" selected="selected">上海</option>
                <option value="">杭州</option>
            </select> 
    
            搜索: <input type="button" value="搜索"/>
            <input type="submit" value="注册"/>     
            <input type="reset" value="重置" />
            头像<input type="file" />
            <!--图像按钮-->
            <input type="image" src="img/1.gif" />
        </form>       
    </body>
    </html>

    04html5新增表单元素.html

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Document</title>
    </head>
    <body>
        <form action="">
            邮箱<input type="email" /> 
            手机 <input type="tel" />
            数字 <input type="number" />
            网址<input type="url" />
            搜索<input type="search" />
            区域 <input type="range" />
            时间 <input type="time" />
            年月日 <input type="date" />
            月份 <input type="month" />
            星期 <input type="week" />
            颜色 <input type="color" />
            <input type="submit" />
        </form>
    </body>
    </html>

     05html5新增表单属性.html

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Document</title>
    </head>
    <body>
        <!--placeholder用户输入文字提示,autofocus页面加载自动获取焦点-->
        用户名 <input type="text" placeholder="请输入用户名" autofocus/>
        上传头像<input type="file" multiple/>
        <form action="">
            姓名<input type="text" autocomplete="on" name="userName" required accesskey="c"/>
            <input type="submit" />
        </form>
    </body>
    </html>

     

  • 相关阅读:
    shell脚本编程-重定向
    web安全-剖析_基础构架剖析
    shell脚本编程-函数
    shell脚本编程-循环
    web安全-入侵基础
    shell脚本编程-检查和测试
    shell脚本编程-特殊字符
    shell脚本编程-计算方式
    python例子-抓取网站IP列表
    linux问题-APR not Found
  • 原文地址:https://www.cnblogs.com/HiJackykun/p/11032065.html
Copyright © 2020-2023  润新知