• 表格和表单的结合示例


     表格和表单的结合示例demo

    <!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" xml:lang="zh-cn">
    <head>
        <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
        <title>网页标题</title>
        <meta name="keywords" content="关键字列表" />
        <meta name="description" content="网页描述" />
        <link rel="stylesheet" type="text/css" href="" />
        <style type="text/css">
        .xxdjb{
             backGround-color:#e0e0e0;
        }
        table{
            text-align:center;
        }
        
        </style>
        <script type="text/javascript"></script>
    </head>
    <body>
            <!--要提交后端php地址自行修改-->
    <form method="post" action="recrive.php"> <table border="1" rules="all" bordercolor="#000000" > <tr> <th colspan="2" height="50">信息登记表</th> </tr> <tr class="xxdjb" height="50"> <td width="50" >姓名</td> <td><input type="text" name="username"/></td> </tr> <tr height="70"> <td>性别</td> <td> <input type="radio" name="sex" value="nan" checked="checked"/><input type="radio" name="sex" value="nv"/></td> </tr> <tr class="xxdjb" height="50"> <td>爱好</td> <td> <input type="checkbox" name="hobby[]" value="kdy"/>看电影 <input type="checkbox" name="hobby[]" value="tyy" checked="checked"/>听音乐 <input type="checkbox" name="hobby[]" value="ly" checked="checked"/>旅游 </td> </tr> <tr height="50"> <td>月薪</td> <td><input type="text" name="salary"/></td> </tr> <tr class="xxdjb" height="50"> <td>国籍</td> <td> <select> <option name="nationality" selected="selected" value="中国">中国</option> <option name="nationality" value="美国" >美国</option> </select> </td> </tr> <tr height="50"> <td>备注</td> <td><textarea name="beizhu" cols="#" rows="#"></textarea></td> </tr> <tr> <td colspan="2" height="40"> <input type="submit" value="提交信息"/> <input type="reset" value="重置"/> </td> </tr> </table> </form> </body> </html>

  • 相关阅读:
    [置顶] cocos2d-x 3.0游戏开发xcode5帅印博客教学 003.[HoldTail]游戏世界以及背景画面
    flex调用webservice中的datatable结果写入datagrid
    linux shell编程指南第十一章------------合并与分割2
    Java GUI使用exe4j打包exe文件
    最小生成树kruskal算法
    JQuery Datatable Ajax请求两次问题的解决
    其实我还好
    EFM32在使用IAR开发环境配置ICf文件以及指定程序存储地址空间
    hdu1151Air Raid
    UIWebview打开.txt文件中文乱码解决
  • 原文地址:https://www.cnblogs.com/cxx8181602/p/6112312.html
Copyright © 2020-2023  润新知