• HTML表格与表单


    表格

     table标签:表格标签,标签中含tr标签、td标签
                        border属性:设置边框的粗细
                        cellspacing属性:设置单元格与单元格之间、单元格于表格边框之间的距离,一般设置为0
                        cellpadding属性:设置单元格中的内容与边框之间的距离
                        width属性:设置表格的宽度
                        height属性:设置表格的高度
                        align属性:设置表格在页面中的对齐方式,常用之left(左对齐,默认对齐方式)、center(居中对齐)、right(右对齐)
                tr标签:行标签,需要写在table标签内
                        align属性:设置当前行里的内容对齐方式,常用之left(左对齐,默认对齐方式)、center(居中对齐)、right(右对齐)

                th标签:表头单元格标签,需要写在tr标签内, 元素中的文本通常呈现为粗体并且居中。
                td标签:单元格标签,需要写在tr标签内
                        align属性:设置当前单元格里的内容对齐方式,常用之left(左对齐,默认对齐方式)、center(居中对齐)、right(右对齐)

                表格有两种单元格类型:
                表头单元格 - 包含头部信息(由 元素创建)
                标准单元格 - 包含数据(由 元素创建)

    1. <table border="1px" cellspacing="0" cellpadding="20px" width="500px" height="300px" align="center">
    2. <tr>
    3. <th>1-1th>
    4. <th>1-2th>
    5. <th>1-3th>
    6. tr>
    7. <tr>
    8. <th>2-1th>
    9. <th>2-2th>
    10. <th>2-3th>
    11. tr>
    12. <tr>
    13. <th>3-1th>
    14. <th>3-2th>
    15. <th>3-3th>
    16. tr>
    17. <tr>
    18. <th>4-1th>
    19. <th>4-2th>
    20. <th>4-3th>
    21. tr>
    22. table>

    表格的行合并和列合并

    colspan属性:合并表格行单元格

    rowspan 属性:合并表格列单元格

    1. <table border="1px" cellspacing="0" cellpadding="20px" width="500px" height="300px" align="center">
    2. <tr>
    3. <th>1-1th>
    4. <th>1-2th>
    5. <th>1-3th>
    6. tr>
    7. <tr>
    8. <td>2-1td>
    9. <td>2-2td>
    10. <td>2-3td>
    11. tr>
    12. <tr>
    13. <td>3-1td>
    14. <td>3-2td>
    15. <td>3-3td>
    16. tr>
    17. <tr>
    18. <td>4-1td>
    19. <td>4-2td>
    20. <td>4-3td>
    21. tr>
    22. table>

    表单

     form标签:表单标签
                method属性:设置表单内容提交方式,常用之get和post,其中post提交方式比get提交方式安全
                action属性:设置表单内容处理程序
                input标签:输入标签,通过type属性设置不同的输入类型
                    type属性:设置input标签的输入类型,常用值有:
                        text:文本框
                        password:密码框,输入内容不会以明文的方式显示
                        radio:单选按钮,需要通过在input标签中写name属性来实现单选效果,可以在该input标签内写checked="checked"属性实现默认选择
                        checkbox:复选框,可以在该input标签中写checked="checked"属性实现默认选择
                        file:文件域,可以选择电脑上的文件
                        reset:重置按钮,点击该按钮,会将表单恢复到初始状态
                        submit:提交按钮,点击该按钮,将表单的内容提交到action属性指向的位置
                        image:图像提交按钮,功能与submit类似
                        button:普通按钮,一般结合JavaScript一起使用
                select标签:下拉列表标签,下拉内容通过option标签来设置
                option标签:设置下拉列表的选项,可以在该标签内写selected="selected" 属性设置默认选择项目
                
                textarea:文本域
                    col:设置文本域的宽度
                    rows:设置文本域的高度 

    1. <form method="GET" action="01HTML入门.html">
    2. 姓名:<input type="text" /> <br />
    3. 密码:<input type="password" /><br />
    4. 性别:<input type="radio" name="sex" />
    5. <input type="radio" name="sex" checked="checked" />
    6. <input type="radio" name="sex" />中性<br />
    7. 爱好:<input type="checkbox" />篮球
    8. <input type="checkbox" checked="checked" />足球
    9. <input type="checkbox" />棒球
    10. <input type="checkbox" />羽毛球<br />
    11. 照片:<input type="file" /><br />
    12. 生日:<select>
    13. <option>1990option>
    14. <option>1991option>
    15. <option>1992option>
    16. <option>1993option>
    17. select>年
    18. <select>
    19. <option>1option>
    20. <option>2option>
    21. <option>3option>
    22. <option>4option>
    23. select>月
    24. <select>
    25. <option>1option>
    26. <option>2option>
    27. <option>3option>
    28. <option>4option>
    29. select>日
    30. <br />
    31. 描述:<textarea cols="30" rows="10">请输入你的介绍
    32. textarea><br />
    33. <input type="reset" value="重新输入"/>
    34. <input type="submit" value="登录"/>
    35. <input type="image" src="img/OIP-C.jpg"/>
    36. <input type="button" value="点我一下" onclick="alert('你点我干什么')"/>
    37. form>

     

  • 相关阅读:
    纪念DedeCMS创始人IT柏拉图先生
    c++ 防范死锁的多种方法
    PSSecurityException
    安卓抓jdwskey
    记一次线上BUG排查过程
    详解vue中中localStorage的使用方法
    如何利用Java爬取网站数据?
    [NPUCTF2020]ReadlezPHP 反序列化简单反序列
    【老狗 - 笔面试记录】
    HOOPS 3DGS技术概述
  • 原文地址:https://blog.csdn.net/qq_51810428/article/details/126731036