HTML5 meta標籤的用法
宣告文件使用的字元編碼:
<meta charset="utf-8" />
宣告文件的相容模式:
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1"/> //指示IE以目前可用的最高模式顯示內容
定義對頁面的描述:
<meta name="description" content="HTML5COL學院提供高質量HTML5教學" />
定義頁面的最新版本:
<meta name="revised" content="Frank, 2016/3/1" />
SEO 優化
頁面描述
<meta name="description" content="不超過850個字元"/>
定義針對搜尋引擎的關鍵詞:
<meta name="keywords" content="HTML5COL學院, HTML5, CSS3, JavaScript" />
定義網頁作者:
<meta name="author" content="HTML5COL" />
定義網頁搜尋引擎索引方式,使用英文逗號「,」分隔,常有如下幾種取值:none,noindex,nofollow,all,index和follow:
<meta name="robots" content="index,follow" />
為移動裝置新增 viewport
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
引數說明
content引數 釋義
width viewport 寬度(數值/device-width)
height viewport 高度(數值/device-height)
initial-scale 初始縮放比例
maximum-scale 最大縮放比例
minimum-scale 最小縮放比例
user-scalable 是否允許使用者縮放(yes/no)
ISO 裝置
新增到主屏後的標題(iOS 6開始):
<meta name="apple-mobile-web-app-title" content="標題" />
設定狀態列的背景顏色:
<meta name="apple-mobile-web-app-title" content="yes" />
是否啟用 WebApp 全屏模式:
<meta name="apple-mobile-web-app-capable" content="yes" />
設定狀態列的背景顏色:
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
注:只有在 "apple-mobile-web-app-capable" content="yes" 時生效
content 引數:
content引數 釋義
default 預設值,網頁內容從狀態列底部開始
black 狀態列背景是黑色,網頁內容從狀態列底部開始
black-translucent 狀態列背景是黑色半透明,網頁內容充滿整個螢幕,頂部會被狀態列遮擋
Windows 8
Windows 8 磁貼顏色:
<meta name="msapplication-TileColor" content="#000" />
Windows 8 磁貼圖示:
<meta name="msapplication-TileImage" content="icon.png" />
其他
禁止數字識自動別為電話號碼:
<meta name="format-detection" content="telephone=no" />
不讓android識別郵箱:
<meta name="format-detection" content="email=no" />
每 8 秒重新整理一次頁面:
<meta http-equiv="refresh" content="8" />