2019.11.25

HTML常用标签

2019-11-21  本文已影响0人  fanison

一. a 标签

  <a href=" "></a>
  1. href的取值
  <a href="https://fanison.info"></a>
  <a href="http://fanison.info"></a>
  <a href="//fanison.info"></a>
  <a href="./posts/index.html"></a>
  <a href="javascript:;">Click</a>
  <a href="javascript:alert(1);">js伪代码</a>
  <a href="mailto:yafanison@gmail.com">发邮件给我</a>
  <a href="tel:18312345678">Call Me</a>


  <a href="#id">Call Me</a>
  1. target的取值
  <a href="http://fanison.info" target="_blank">新窗口打开</a>
  <a href="http://fanison.info" target="_self">当前页面加载</a>

_parent: 加载响应到当前浏览上下文的父浏览上下文
_top:加载响应进入顶层浏览上下文

  1. download:下载页面

二. tabel 标签

  <table>
    <thead>
      <tr>
        <th>姓名</th>
        <th>性别</th>        
      </tr>
    </thead>  
    <tbody>
      <tr>
        <td>小米</td>
        <td>男</td>
      </tr>
      <tr>
        <td>苹果</td>
        <td>女</td>
      </tr>
    </tbody>
    <tfoot>
      <tr>
        <td>x</td>
        <td>y</td>
      </tr>
    </tfoot>
  </table>
    table{
      width:300px;
      border-spacing:5px;
      border-collapse: collapse;
    }
    th,td{
      border:1px solid red;
    }
    table{
      table-layout: auto;
     /* table-layout: fixed;*/
     }

三. img标签

  <img class="pic" src="https://www.baidu.com/img/bd_logo1.png" alt="百度logo">
    img{
      max-width:100%;
    }
  <script>
    pic.onload = function(){
      console.log("success")
    }
    pic.onerror = function(){
      console.log("failed")
    }
  </script>

四. form表单

 <form action="users?zzz=3" method="post">
   <label>用户名<input type="text" name="姓名"></label>
   <label>密码<input type="password" name="密码"></label>          
   <input type="submit" value="提交">
 </form>

五. input标签

text、password、color、file、checkbox、radio、button、submit

  <input type="text">    <input type="password">  
  <input type="color">
  <input type="file"><input type="file" multiple>

  <input type="checkbox" name="fruit" id="xxx"><label for="xxx">橘子</label>
  <input type="checkbox" name="fruit" id="yyy"><label for="yyy">苹果</label>

  <label><input name="answer" type="radio" value="Yes">对</label>
  <label><input name="answer" type="radio" value="No">错</label>

六. 其他标签

- label标签: label标签将input标签包围效果等同于属性绑定

  <label>用户名<input type="text" name="姓名"></label>
  <label>密码<input type="password" name="密码"></label>

- select标签

  <select name="group" multiple>
    <option value="">-</option>
    <option value="1">第一组</option>
    <option value="2" disabled>第二组</option>
    <option value="3" selected>第三组</option>
  </select>

补充

- textarea标签

<textarea name="textarea" >Write something here</textarea>
<textarea name="textarea" style="resize:none; width:100px; height:50px; ">Write something here</textarea>

- button标签

<button>提交</button>
<input type="submit" value="提交">    
<button type="submit">提交 </button>      三种提交

补充

- 可替换元素

典型的可替换元素有:

上一篇下一篇

猜你喜欢

热点阅读