zoukankan      html  css  js  c++  java
  • 2021/9/2

    单行文本框:<input type="text" name="name" value="value">。
    密码框:<input type="password" name="name" value="value">。
    单选按钮:<input type="radio" name="name" value="value">。
    复选框:<input type="checkbox" name="name" value="value">。
    多行文本框:<textarea rows="8" cols="40" name="name">value</textarea>。
    下拉框和列表框:<select name="name"><option value="X">X</option></select>。
    提交按钮:<input type="submit" value="value">。
    重置按钮:<input type="reset" value="value">。
    Form 表单:<form action="目标文件">表单元素</form>。
    

     第一行一般是表头

    <table>
     <tr>
     <th>第一列</th>
     <th>第二列</th>
     <th>第三列</th>
     </tr>
     <tr>
     <td>第一行第一列的值</td>
     <td>第一行第二列的值</td>
     <td>第一行第三列的值</td>
     </tr>
     <tr>
     <td>第二行第一列的值</td>
     <td>第二行第二列的值</td>
     <td>第二行第三列的值</td>
     </tr>
    </table>
    

     二.表头

    三web

  • 相关阅读:
    http uri唯一标识
    http协议
    python模块 sys
    file 文件的操作
    库的介绍及使用
    python os模块
    python的序列化与反序列化
    python 字典的定义以及方法
    python字符串的常用方法
    在Windows下使用adb logcat grep
  • 原文地址:https://www.cnblogs.com/qiangini/p/14160903.html
Copyright © 2011-2022 走看看