-META標簽
meta 標簽兩個屬性:
name屬性:
主要用于描述網(wǎng)頁,比如網(wǎng)頁的關(guān)鍵詞南蓬,敘述等芭商。與之對應的屬性值為content,content中的內(nèi)容是對name填入類型的具體描述须蜗,便于搜索引擎抓取硅确。meta標簽中name屬性語法格式是http-equiv屬性:
http-equiv類似于HTTP的頭部協(xié)議,它回應給瀏覽器一些有用的信息唠粥,以幫助正確和精確地顯示網(wǎng)頁內(nèi)容疏魏。
語法格式:<meta name / http-equiv="參數(shù)" content="具體的描述">
name:
keywords(關(guān)鍵字)
<pre><meta name="keywords" content="淘寶,掏寶,網(wǎng)上購物,C2C,在線交易">
</pre>description(網(wǎng)站內(nèi)容的描述)
<pre><meta name="description" content="一個人的Blog">
</pre>viewport(移動端的窗口)
<pre>``` <meta name="viewport" content="width=device-width, initial-scale=1.0,maximum-scale=1.0, user-scalable=no"/>
- 注意,很多人使用initial-scale=1到非響應式網(wǎng)站上晤愧,這會讓網(wǎng)站以100%寬度渲染大莫,用戶需要手動移動頁面或者縮放。如果和initial-scale=1同時使用user-scalable=no或maximum-scale=1官份,則用戶將不能放大/縮小網(wǎng)頁來看到全部的內(nèi)容只厘。
- robots(定義搜索引擎爬蟲的索引方式)
<pre>```
<meta name="robots" content="index,follow" />
- robotterms是一組使用逗號(,)分割的值,通常有如下幾種取值:none舅巷,noindex羔味,nofollow,all钠右,index和follow赋元。確保正確使用nofollow和noindex屬性值。
- author(作者)
<pre>```<meta name="author" content="XXXXXXXX@XX.com">```</pre>
- copyright(版權(quán))
<pre>``` <meta name="copyright" content="XXXXXXXXX">
<!--代表該網(wǎng)站為XXXXXXXXX個人版權(quán)所有飒房。-->```</pre>
- revisit-after(搜索引擎爬蟲重訪時間)
<pre>```<meta name="revisit-after" content="7 days" >```</pre>
- 說明:如果頁面不是經(jīng)常更新搁凸,為了減輕搜索引擎爬蟲對服務器帶來的壓力,可以設置一個爬蟲的重訪時間狠毯。如果重訪時間過短护糖,爬蟲將按它們定義的默認時間來訪問。舉例:
- renderer(雙核瀏覽器渲染方式)
<pre>```<meta name="renderer" content="webkit|ie-comp|ie-stand"> <!-- 與font-family優(yōu)先規(guī)則一樣 -->
<meta name="renderer" content="webkit"> <!-- 默認webkit內(nèi)核 -->
<meta name="renderer" content="ie-comp"> <!-- 默認IE兼容模式 -->
<meta name="renderer" content="ie-stand"> <!-- 默認IE標準模式 -->```</pre>
---
## http-equiv:
- [X-UA-Compatible](https://msdn.microsoft.com/en-us/library/jj676915(v=vs.85).aspx)(瀏覽器采取何種版本渲染當前頁面)
<pre>```<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<!-- 關(guān)于X-UA-Compatible -->
<meta http-equiv="X-UA-Compatible" content="IE=6" ><!-- 使用IE6 -->
<meta http-equiv="X-UA-Compatible" content="IE=7" ><!-- 使用IE7 -->
<meta http-equiv="X-UA-Compatible" content="IE=8" ><!-- 使用IE8 -->```</pre>
- cache-control(指定請求和響應遵循的緩存機制)
說明:指導瀏覽器如何緩存某個響應以及緩存多長時間嚼松。[參考鏈接:Google Developers](https://developers.google.com/?hl=zh-cn)[參考鏈接:HTTP緩存](https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/http-caching?hl=zh-cn#cache-control)
![](https://segmentfault.com/image?src=http://7xoxxe.com1.z0.glb.clouddn.com/cache.png&objectId=1190000004279791&token=60cc5b81792e199feb8a6b032aff4b83)
<pre>``` <meta http-equiv="cache-control" content="no-cache">
<!-- no-cache: 先發(fā)送請求嫡良,與服務器確認該資源是否被更改,如果未被更改献酗,則使用緩存寝受。 -->
<!-- no-store: 不允許緩存,每次都要去服務器上罕偎,下載完整的響應羡蛾。(安全措施)-->
<!-- public : 緩存所有響應,但并非必須。因為max-age也可以做到相同效果-->
<!-- private : 只為單個用戶緩存痴怨,因此不允許任何中繼進行緩存忙干。(比如說CDN就不允許緩存private的響應)-->
<!-- maxage : 表示當前請求開始,該響應在多久內(nèi)能被緩存和重用浪藻,而不去服務器重新請求捐迫。例如:max-age=60表示響應可以再緩存和重用 60 秒。-->
```</pre>
- expires(網(wǎng)頁到期時間)
<pre>```<meta http-equiv="expires" content="Sunday 26 October 2016 01:00 GMT" />
<!-- 用于設定網(wǎng)頁的到期時間爱葵,過期后網(wǎng)頁必須到服務器上重新傳輸施戴。-->
```</pre>
- refresh(自動刷新并指向某頁面)
<pre>```<meta http-equiv="refresh" content="10;URL=http://www.xxx.com/">
<!-- 意思是10秒后跳轉(zhuǎn)向我的博客 -->
```</pre>
- Set-Cookie(cookie設定)
<pre>```
<!-- 如果網(wǎng)頁過期萌丈。那么這個網(wǎng)頁存在本地的cookies也會被自動刪除赞哗。 -->
<meta http-equiv="Set-Cookie" content="name, date">
<!-- 格式 -->
<meta http-equiv="Set-Cookie" content="User=Lxxyx; path=/; expires=Sunday, 10-Jan-16 10:00:00 GMT">
<!-- 具體范例 -->```</pre>
---
> 移動web前端meta通用設置:
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="renderer" content="webkit">
<meta name="MobileOptimized" content="320">
<meta name="keywords" content="">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<meta name="HandheldFriendly" content="true">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="format-detection" content="telphone=no, email=no" />
<meta name="screen-orientation" content="portrait">
<meta name="x5-orientation" content="portrait">
<meta name="full-screen" content="yes">
<meta name="x5-fullscreen" content="true">
<meta name="browsermode" content="application">
<meta name="x5-page-mode" content="app">
<meta name="msapplication-tap-highlight" content="no">
---
參考鏈接:[點擊](http://www.maoyupeng.com/web-app-common-meta.html)
參考鏈接:[點擊](https://segmentfault.com/a/1190000004279791)