zoukankan      html  css  js  c++  java
  • html表单练习

    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="UTF-8">
            <title>表单</title>
        </head>
        <body>
            <center>
                <form action="./a.jsp" method="post">
                用户名:<input name="username" type="text" maxlength="20" /><br />
                密码:  <input name="pwd1" type="password" size="20" maxlength="20"  /><br />
                确认密码:<input name="pwd2" type="password" maxlength="20" /> <br />
                性别:    <input name="sex" type="radio" value="男" checked="checked" />男&nbsp;
                         <input name="sex" type="radio" value="女" /> 女<br />
                爱好:    <input name="like" type="checkbox" value="体育" />体育
                         <input name="like" type="checkbox" value="旅游" />旅游
                         <input name="like" type="checkbox" value="看书" />看书<br />
                E-mail:<input name="email" type="text" size="50" /><br />
                       <input name="submit" type="submit" value="确认保存" />
                       <input name="reset" type="reset" value="重新填写" />
                       <input type="button" value="保存" />
                </form>
            </center>
        </body>
    </html>

  • 相关阅读:
    如何把两个查询语句合成一条 语句
    SpringBoot之springfox(Swagger) (ApiDoc接口文档)
    springboot + swagger
    高等数学(上)第2章——导数与微分
    oracle 常用 sql
    线性代数基础知识(三)—— 矩阵乘法
    Neo4j(一)
    医学知识图谱(二)——应用
    医学知识图谱一
    数学基本概念
  • 原文地址:https://www.cnblogs.com/nanfengnan/p/13939115.html
Copyright © 2011-2022 走看看