HTML 5 <meta> 標(biāo)簽
所有瀏覽器都支持 <meta> 標(biāo)簽。
定義和用法
<meta> 元素可提供有關(guān)頁(yè)面的元信息(meta-information),比如針對(duì)搜索引擎和更新頻度的描述和關(guān)鍵詞。
<meta> 標(biāo)簽位于文檔的頭部,不包含任何內(nèi)容。<meta> 標(biāo)簽的屬性定義了與文檔相關(guān)聯(lián)的名稱(chēng)/值對(duì)。
HTML 4.01 與 HTML 5 之間的差異
在 HTML 5 中,不再支持 scheme 屬性。
在 HTML 5 中,有一個(gè)新的 charset 屬性,它使字符集的定義更加容易。
在 HTML 4.01 中,不得不這么寫(xiě):
<meta http-equiv="content-type" content="text/html; charset=UTF-8">在 HTML 5 中,這樣就夠了:
<meta charset="UTF-8">
例子
定義針對(duì)搜索引擎的關(guān)鍵詞:
<meta name="keywords" content="HTML, CSS, XML, XHTML, JavaScript" />
定義對(duì)頁(yè)面的描述:
<meta name="description" content="免費(fèi)的 web 技術(shù)教程。" />
定義頁(yè)面的最新版本:
<meta name="revised" content="David, 2008/8/8/" />
每 5 秒刷新一次頁(yè)面:
<meta http-equiv="refresh" content="5" />
基本標(biāo)簽
聲明文檔使用的字符編碼:
<meta charset="utf-8" />
聲明文檔的兼容模式:
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1"/> //指示IE以目前可用的最高模式顯示內(nèi)容
定義對(duì)頁(yè)面的描述:
<meta name="description" content="HTML5COL學(xué)院提供高質(zhì)量HTML5教學(xué)" />
定義頁(yè)面的最新版本:
<meta name="revised" content="Frank, 2016/3/1" />
SEO 優(yōu)化
頁(yè)面描述
<meta name="description" content="不超過(guò)850個(gè)字符"/>
定義針對(duì)搜索引擎的關(guān)鍵詞:
<meta name="keywords" content="HTML5COL學(xué)院, HTML5, CSS3, JavaScript" />
定義網(wǎng)頁(yè)作者:
<meta name="author" content="HTML5COL" />
定義網(wǎng)頁(yè)搜索引擎索引方式,使用英文逗號(hào)「,」分隔,常有如下幾種取值:none,noindex,nofollow,all,index和follow:
<meta name="robots" content="index,follow" />
為移動(dòng)設(shè)備添加 viewport
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
參數(shù)說(shuō)明
content參數(shù) 釋義
width viewport 寬度(數(shù)值/device-width)
height viewport 高度(數(shù)值/device-height)
initial-scale 初始縮放比例
maximum-scale 最大縮放比例
minimum-scale 最小縮放比例
user-scalable 是否允許用戶(hù)縮放(yes/no)
ISO 設(shè)備
添加到主屏后的標(biāo)題(iOS 6開(kāi)始):
<meta name="apple-mobile-web-app-title" content="標(biāo)題" />
設(shè)置狀態(tài)欄的背景顏色:
<meta name="apple-mobile-web-app-title" content="yes" />
是否啟用 WebApp 全屏模式:
<meta name="apple-mobile-web-app-capable" content="yes" />
設(shè)置狀態(tài)欄的背景顏色:
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
注:只有在 "apple-mobile-web-app-capable" content="yes" 時(shí)生效
content 參數(shù):
content參數(shù) 釋義
default 默認(rèn)值,網(wǎng)頁(yè)內(nèi)容從狀態(tài)欄底部開(kāi)始
black 狀態(tài)欄背景是黑色,網(wǎng)頁(yè)內(nèi)容從狀態(tài)欄底部開(kāi)始
black-translucent 狀態(tài)欄背景是黑色半透明,網(wǎng)頁(yè)內(nèi)容充滿(mǎn)整個(gè)屏幕,頂部會(huì)被狀態(tài)欄遮擋
Windows 8
Windows 8 磁貼顏色:
<meta name="msapplication-TileColor" content="#000" />
Windows 8 磁貼圖標(biāo):
<meta name="msapplication-TileImage" content="icon.png" />
其他
禁止數(shù)字識(shí)自動(dòng)別為電話號(hào)碼:
<meta name="format-detection" content="telephone=no" />
不讓android識(shí)別郵箱:
<meta name="format-detection" content="email=no" />
每 8 秒刷新一次頁(yè)面:
<meta http-equiv="refresh" content="8" />
所有瀏覽器都支持 <meta> 標(biāo)簽。
定義和用法
<meta> 元素可提供有關(guān)頁(yè)面的元信息(meta-information),比如針對(duì)搜索引擎和更新頻度的描述和關(guān)鍵詞。
<meta> 標(biāo)簽位于文檔的頭部,不包含任何內(nèi)容。<meta> 標(biāo)簽的屬性定義了與文檔相關(guān)聯(lián)的名稱(chēng)/值對(duì)。
HTML 4.01 與 HTML 5 之間的差異
在 HTML 5 中,不再支持 scheme 屬性。
在 HTML 5 中,有一個(gè)新的 charset 屬性,它使字符集的定義更加容易。
在 HTML 4.01 中,不得不這么寫(xiě):
<meta http-equiv="content-type" content="text/html; charset=UTF-8">在 HTML 5 中,這樣就夠了:
<meta charset="UTF-8">
例子
定義針對(duì)搜索引擎的關(guān)鍵詞:
<meta name="keywords" content="HTML, CSS, XML, XHTML, JavaScript" />
定義對(duì)頁(yè)面的描述:
<meta name="description" content="免費(fèi)的 web 技術(shù)教程。" />
定義頁(yè)面的最新版本:
<meta name="revised" content="David, 2008/8/8/" />
每 5 秒刷新一次頁(yè)面:
<meta http-equiv="refresh" content="5" />
基本標(biāo)簽
聲明文檔使用的字符編碼:
<meta charset="utf-8" />
聲明文檔的兼容模式:
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1"/> //指示IE以目前可用的最高模式顯示內(nèi)容
定義對(duì)頁(yè)面的描述:
<meta name="description" content="HTML5COL學(xué)院提供高質(zhì)量HTML5教學(xué)" />
定義頁(yè)面的最新版本:
<meta name="revised" content="Frank, 2016/3/1" />
SEO 優(yōu)化
頁(yè)面描述
<meta name="description" content="不超過(guò)850個(gè)字符"/>
定義針對(duì)搜索引擎的關(guān)鍵詞:
<meta name="keywords" content="HTML5COL學(xué)院, HTML5, CSS3, JavaScript" />
定義網(wǎng)頁(yè)作者:
<meta name="author" content="HTML5COL" />
定義網(wǎng)頁(yè)搜索引擎索引方式,使用英文逗號(hào)「,」分隔,常有如下幾種取值:none,noindex,nofollow,all,index和follow:
<meta name="robots" content="index,follow" />
為移動(dòng)設(shè)備添加 viewport
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
參數(shù)說(shuō)明
content參數(shù) 釋義
width viewport 寬度(數(shù)值/device-width)
height viewport 高度(數(shù)值/device-height)
initial-scale 初始縮放比例
maximum-scale 最大縮放比例
minimum-scale 最小縮放比例
user-scalable 是否允許用戶(hù)縮放(yes/no)
ISO 設(shè)備
添加到主屏后的標(biāo)題(iOS 6開(kāi)始):
<meta name="apple-mobile-web-app-title" content="標(biāo)題" />
設(shè)置狀態(tài)欄的背景顏色:
<meta name="apple-mobile-web-app-title" content="yes" />
是否啟用 WebApp 全屏模式:
<meta name="apple-mobile-web-app-capable" content="yes" />
設(shè)置狀態(tài)欄的背景顏色:
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
注:只有在 "apple-mobile-web-app-capable" content="yes" 時(shí)生效
content 參數(shù):
content參數(shù) 釋義
default 默認(rèn)值,網(wǎng)頁(yè)內(nèi)容從狀態(tài)欄底部開(kāi)始
black 狀態(tài)欄背景是黑色,網(wǎng)頁(yè)內(nèi)容從狀態(tài)欄底部開(kāi)始
black-translucent 狀態(tài)欄背景是黑色半透明,網(wǎng)頁(yè)內(nèi)容充滿(mǎn)整個(gè)屏幕,頂部會(huì)被狀態(tài)欄遮擋
Windows 8
Windows 8 磁貼顏色:
<meta name="msapplication-TileColor" content="#000" />
Windows 8 磁貼圖標(biāo):
<meta name="msapplication-TileImage" content="icon.png" />
其他
禁止數(shù)字識(shí)自動(dòng)別為電話號(hào)碼:
<meta name="format-detection" content="telephone=no" />
不讓android識(shí)別郵箱:
<meta name="format-detection" content="email=no" />
每 8 秒刷新一次頁(yè)面:
<meta http-equiv="refresh" content="8" />