• 前端 HTML form表单标签 input标签 type属性 重置按钮 reset


    input type="reset" value="重置"
    
    
    reset重置 还原到默认状态
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="x-ua-compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title>Title</title>
    </head>
    <body>
        <form action="http://www.baidu.com" method="get">
            <div>
                <p>
                    <input type="text" name="user">
                </p>
                <p>
                    用户性别
                    男:<input type="radio" name="gender" value="1" checked="checked">
                    女:<input type="radio" name="gender" value="2">
                </p>
                <p>
                    爱好
                    篮球: <input type="checkbox" name="favor" value="1">
                    足球: <input type="checkbox" name="favor" value="2">
                    羽毛球: <input type="checkbox" name="favor" value="3">
                    排球: <input type="checkbox" name="favor" value="4">
                </p>
                <p>
                    技能
                    写代码: <input type="checkbox" name="skill" value="1">
                    写代码: <input type="checkbox" name="skill" value="2">
                </p>
            </div>
    
            <input type="submit" value="提交">
            <!-- 重置按钮 -->
            <input type="reset" value="重置">
        </form>
    </body>
    </html>

     按下重置按钮,还原到默认状态

  • 相关阅读:
    shell script-条件语句、循环语句
    shell script-判断式
    shell script
    AngularJs(Part 11)--自定义Directive
    AngularJS中的DI
    javascript的DI
    一些奇怪的Javascript用法
    AngularJS(Part 10)--页面导航
    URL中#符号的作用
    AngularJs(Part 9)--AngularJS 表单
  • 原文地址:https://www.cnblogs.com/mingerlcm/p/10636241.html
Copyright © 2020-2023  润新知