zoukankan      html  css  js  c++  java
  • 表单提交1

    表单提交的HTML:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <link href="注册表单.css" rel="contents" style="" />
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title>注册表单</title>
    <style type="text/css">
    #fieldset{color:#CCCCCC;
            font-size:12pz;
                }
    #fieldset input{
            border:solid 1px #339900;
            width:6em;
            }
    #fieldset dt{
            font-size:16px;
            color:#333;
            }
    #fieldset dd{
            line-height:2em;
            /*float:right;*/
            }
    #fieldset #submit{
            text-indent:999px;
            border:0;
            width:53px;
            height:19px;
            background-image:none;
            }
    #fieldset #reset{
            text-indent:999px;
            border:0;
            width:53px;
            height:19px;
            background-image:none;
            }
            
    </style>
    </head>
    
    <body>
    <form action="" method="post" id="fieldset">
        <dl>
            <dt>注册表单</dt>
            <dd>用户名
                <input id="name" name="name" />
                <input id="submit" type="submit" value="提交" name="submit" />
            </dd>
            <dd>密码
                <input id="password" name="password" />
                <input id="reset" type="reset" value="取消" name="reset" /> 
            </dd>
            </dl>
        </dl>
    </form>
    </body>
    </html>
  • 相关阅读:
    作业2 身份认证(正心13)
    ubuntu16内核升级过程遇到的问题
    「」
    「loj
    「一个经典问题的另一个推导方法」
    「loj
    「XXI Opencup GP of Tokyo」 Count Min Ratio
    「codeforces
    「codeforces
    「Dominator Tree」
  • 原文地址:https://www.cnblogs.com/blogofwyl/p/4540136.html
Copyright © 2011-2022 走看看