zoukankan      html  css  js  c++  java
  • 表单

    <!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>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>表单</title>
    </head>
    
    <body>
    <form id="first" name="first">
    <label>账号:</label><input type="text" value="33334444" /><br />
    密码:<input type="password" /><br />
    备注:<textarea cols="30" rows="5" disabled="disabled"></textarea>
    <br />
    <input type="hidden" /><br />
    <input type="submit" value="提交" /><input type="reset" value="重置" /><br />
    <input type="button" value="登陆" disabled="disabled" /><br />
    <input type="image" src="../1221/111.jpg" height="40" width="40" /><br />
    <input type="radio" name="aaaa"  /><br />
    <input type="radio" name="aaaa" /><br />
    <input type="checkbox" />鸡腿<br />
    <input type="checkbox" checked="checked" disabled="disabled" />可乐<br />
    <input type="checkbox" />麦旋风<br />
    <input type="file"  /><br />
    <select size="3" multiple="multiple">
    <option value="1">可口可乐</option>
    <option value="2" selected="selected">百事可乐</option>
    <option value="3">雪碧</option>
    </select>
    
    
    </form>
    
    
    
    
    </body>
    </html>
  • 相关阅读:
    解决Spring+Quartz无法自动注入bean问题
    MacBook PRO蓝牙无法搜索设备
    解决HP打印机错误:Couldn't open fifo
    SQL调优
    ALTER SEQUENCE 修改序列解决唯一约束冲突 unique constraint violated
    Linux Unix 环境变量设置实例
    DB2解除锁表
    ExtJS远程数据-本地分页
    安装mysql
    celery使用
  • 原文地址:https://www.cnblogs.com/WY404683569/p/5079487.html
Copyright © 2011-2022 走看看