2020.12.22-李耀祖

知识点总结

<ol type="I">
            <li>。。。</li>
        </ol>

有序列表:

    标签开始,每个列表以

  1. 开始 type 属性用来指定有序列表的序列列表 使用序列用阿拉伯数字 若超过26位 则使用AA,AB ,a/A表示小/大写英文字母做序号,i/I使用小/大写 罗马数字

    <ul type="circle">
                <li>。。。</li>
            </ul>
    

    无序列表:

      type 列表前序号类型 square 方形 disc 实心圆为默认值 circle 空心圆

      <dl>
                   <dt>类别</dt>
                   <dd>元素</dd>
                   <dd>元素</dd>
                   <dd>元素</dd>
                   
               </dl>
      

      定义列表:

      列表中有多个值

      表格

      <table border="1" width="800px" cellspacing="0" cellpadding="0">
                  <tr>
                      
                      <th>序号</th>
                      <th>姓名</th>
                      <th>性别</th>
                      <th>爱好</th>
                  </tr>
                  
                  <tr>
                      <td rowspan="3">1</td>
                      <td colspan="2">杨金龙</td>
                      <td>干饭</td>
                  </tr>
                  <tr>
                      <td>胡雪斌</td>
                      <td colspan="2">男</td>
                  </tr>
                  <tr>
                      <td>马海龙</td>
                      <td>男</td>
                      <td>看美女</td>
                  </tr>
              </table>
      

      定义表格是用标签定义的。表格被划分为行(使用标签),每行又被划分为数据单元格(使用

      表单

      定义

      <form action="#" method="get">
                  
                  文本框:<input type="text" value="123" readonly="readonly" disabled="disabled"/>   <br />
                  密码框:<input type="password" required="required" placeholder="请输入密码"/> <br />
                  颜色:<input type="color" /> <br />
                  
                  单选框:<input type="radio" name="gender"/>男
                          <input type="radio" name="gender" checked="checked"/>女
                          <br/>
                  多选框:<input type="checkbox" name="hobby"/>看书
                          <input type="checkbox" name="hobby" />打游戏
                          <input type="checkbox" name="hobby" checked="checked" />写代码
                          <br />
                  下拉列表:<select>
                              <option>青海省</option>
                              <option selected="selected">陕西省</option>
                              <option>山东省</option>
                          </select>   
                          <br/>
                  文本域:<textarea cols="20" rows="5"></textarea>        
                  <br/>
                  <button type="button">普通按钮</button>
                  <input type="button" value="普通按钮" />
                  <br />
                  <button type="submit">提交按钮</button>
                  <input type="submit" value="提交按钮" />
                  <br />
                  <button type="reset">重置按钮</button>
                  <input type="reset" value="重置按钮" />
              </form>
      

      表单是一个能够包含表单元素的区域。
      表单元素是能够让用户在表单中输入信息的元素 表单元素只有readonly表示只读 disable禁用 required必填

      input为输入框 属性type =“text”文本框 type =“passward“密码框 换行
      type =“color” 颜色 type =“radio”单选框( checked 默认将其选中 )(checkbox 多选框默认将其选中)

      下拉列表