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>
  • 相关阅读:
    实验三 进程调度模拟程序
    实验二作业调度模拟程序实验报告
    实验8
    实验七
    实验六
    实验五 数独游戏界面设置
    实验五
    实验四
    实验三
    实验二
  • 原文地址:https://www.cnblogs.com/WY404683569/p/5079487.html
Copyright © 2011-2022 走看看