頁面關(guān)鍵詞
<meta name="keywords" content="your tags" />
頁面描述
<meta name="description" content="150 words" />
搜索引擎索引方式
<!--
all:文件將被檢索吹泡,且頁面上的鏈接可以被查詢邑雅;
none:文件將不被檢索偎谁,且頁面上的鏈接不可以被查詢祠斧;
index:文件將被檢索鸦列;
follow:頁面上的鏈接可以被查詢;
noindex:文件將不被檢索掸犬;
nofollow:頁面上的鏈接不可以被查詢帝雇。
-->```
- **頁面重定向和刷新**
``<meta http-equiv="refresh" content="0;url=" />``
- 其他
```<meta name="author" content="author name" /> <!-- 定義網(wǎng)頁作者 -->
<meta name="google" content="index,follow" />
<meta name="googlebot" content="index,follow" />
<meta name="verify" content="index,follow" />```
- **移動設(shè)備**
``<meta name="viewport" content="width=device-width, initial-scale=1.0,maximum-scale=1.0, user-scalable=no"/>``
``<!-- `width=device-width` 會導(dǎo)致 iPhone 5 添加到主屏后以 WebApp 全屏模式打開頁面時出現(xiàn)黑邊 -->``
- **WebApp全屏模式**
``<meta name="apple-mobile-web-app-capable" content="yes" /> <!-- 啟用 WebApp 全屏模式 -->``
- **隱藏狀態(tài)欄/設(shè)置狀態(tài)欄顏色**
``<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />``
- **添加到主屏后的標(biāo)題**
``<meta name="apple-mobile-web-app-title" content="標(biāo)題">``
- **忽略數(shù)字自動識別為電話號碼**
``<meta content="telephone=no" name="format-detection" />``
- **忽略識別郵箱**
``<meta content="email=no" name="format-detection" />``
- **申明編碼**
``<meta charset='utf-8' />``
- **優(yōu)先使用 IE 最新版本和 Chrome**
``<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 -->``
- **禁止瀏覽器從本地計(jì)算機(jī)的緩存中訪問頁面內(nèi)容**
``<meta http-equiv="Pragma" content="no-cache">``
- **瀏覽器不會自動調(diào)整文件的大小,也就是說是固定大小,不會隨著瀏覽器拉伸縮放。**
``<meta name="MobileOptimized" content="240"/> ``