我的前端筆記之 meta 篇

韓可樂發表於2018-04-28
設定編碼資訊

<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://www.baidu.com"; />複製程式碼
設定快取時間

<meta http-equiv="Expires" Content="Web, 28 Jun 2018 11:03: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" />複製程式碼


相關文章