zoukankan      html  css  js  c++  java
  • html控件使用

    <html>
    <head>
    <title>登录页面</title>
    </head>
    <body>
    <form action="a2.html" method="post">
    用户名:<input type="text" name="username"/><br/>&nbsp;&nbsp;码:<input type="password" name="password"/><br/>
    您喜欢的城市:
    <input type="checkbox" name="city" value="beijing">北京
    <input type="checkbox" name="city" value="shanghai">上海
    <input type="checkbox" name="city" value="tianjin">天津
    <br/>
    您的性别是:
    <input type ="radio" name="sex" value="man"><input type ="radio" name="sex" value="woman"><br/> 
    你所在的城市:
    <select name="like">
    <option value="jilin" selected>吉林</option>
    <option value="shanghai">上海</option>
    <option value="chongqing">重庆</option>
    </select><br/>
    <textarea name="mytext" cols="40" rows="10">
    </textarea><br/>
    <input type="file" name="myfile">上传文件<br/>
    <input type="submit" value="登录系统"/>
    <input type ="reset" value="重新填写"/>
    <br/>
    <input type="image" src="2.jpg" >
    </form>
    </body>
    </html>
  • 相关阅读:
    BootstrapTable表格数据左右移动功能遇到的问题(数据左右移动,列表拖拽排序,模糊查询列表数据定位)
    MVC校验
    线程
    验证码
    PublicLogic
    进程
    请求处理过程
    上传组件
    委托
    Global全局应用程序类
  • 原文地址:https://www.cnblogs.com/wumac/p/4593654.html
Copyright © 2011-2022 走看看