meta 標簽可提供頁面元素信息, 使用鍵值對的定義方式,可以記錄網頁上的主要信息,可以自定義鍵值對
屬性 content(必須) , name, http-equiv, scheme, lang
常用 meta 頭:
設置編碼信息 <meta http-equiv="Content-Type" Content="text/html; Charset=utf-8" />
設置語言 <meta http-equiv="Content-Language" Content="zh-CN" />
設置重定向 <meta http-equiv="Refresh" Content="15; Url=http://hovertree.com" />
設置緩存時間 <meta http-equiv="Expires" Content="Web, 26 Jun 2015 18:21:57 GMT" />
不使用緩存 <meta http-equiv="Pragma" Content="No-cach" />
設置關鍵字 <meta name="Keywords" Content="key1,key2,..." />
設置描述信息 <meta name="Description" Content="description abc" />
設置對搜索引擎抓取 <meta name="Robots" Content="All|None|Index|Noindex|Follow|Nofollow" />
設置可視區域 <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
浏覽器使用:
<!-- 國產浏覽器內核選擇 --> <meta name="renderer" content="webkit|ie-comp|ie-stand">
< !-- 使用最新版的ie浏覽器,或者chrome--> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
< !-- 針對手持設備優化,主要是針對一些老的不識別viewport的浏覽器,比如黑莓 --> <meta name="HandheldFriendly" content="true">
< !-- 微軟的老式浏覽器 --> <meta name="MobileOptimized" content="320">
< !-- uc強制豎屏 --> <meta name="screen-orientation" content="portrait">
< !-- QQ強制豎屏 --> <meta name="x5-orientation" content="portrait">
< !-- UC強制全屏 --> <meta name="full-screen" content="yes">
< !-- QQ強制全屏 --> <meta name="x5-fullscreen" content="true">
< !-- UC應用模式 --> <meta name="browsermode" content="application">
< !-- QQ應用模式 --> <meta name="x5-page-mode" content="app">
< !-- windows phone 點擊無高光 --> <meta name="msapplication-tap-highlight" content="no">
< !-- 禁止轉碼 --> <meta http-equiv="Cache-Control" content="no-siteapp" />
禁止數字識自動別為電話號碼 <meta name="format-detection" content="telephone=no" />
禁止識別郵箱 <meta name="format-detection" content="email=no" />
ios特有:
啟用webapp模式 <meta name="apple-mobile-web-app-capable" content="yes" />
改變webapp模式下的外觀 <meta name="apple-mobile-web-app-status-bar-style" content="black" />
windows phone 特有:
<!-- Windows 8 磁貼顏色 --> <meta name="msapplication-TileColor" content="#000"/>
< !-- Windows 8 磁貼圖標 --> <meta name="msapplication-TileImage" content="icon.png"/>
對於content裡面的鍵值對含義,可以自行搜索