通用类:
声明编码
<meta charset=‘utf-8‘ />
页面关键词
<meta name="keywords" content="your tags" />
页面描述
<meta name="description" content="150 words" />
页面重定向和刷新
content内的数字代表时间(秒),既多少时间后刷新。如果加url,则会重定向到指定网页(搜索引擎能够自动检测,也很容易被引擎视作误导而受到惩罚)。
<meta http-equiv="refresh" content="0;url=" />
移动端类:
viewport
禁用不必要的自动缩放,优化移动浏览器显示
<meta name="viewport" content="width=device-width, initial-scale=1.0,maximum-scale=1.0, user-scalable=no"/> <!-- `width=device-width` 会导致 iPhone 5 添加到主屏后以 WebApp 全屏模式打开页面时出现黑边 -->
忽略识别为电话号码 和 邮箱
防止HTML有改变而导致可能的部分JS执行错误
<meta name="format-detection" content="telephone=no" /><!--禁止自动识别为电话号码链接,主要为苹果--> <meta name="format-detection" content="email=no" /><!--禁止自动识别邮箱,主要为安卓-->
其它一些移动端实用META
<!-- 针对手持设备优化,主要是针对一些老的不识别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 name="apple-mobile-web-app-capable" content="yes" /> <!-- 启用 WebApp 全屏模式 -->
添加到主屏后的标题(苹果)
<meta name="apple-mobile-web-app-title" content="标题">
站点适配:主要用于PC-手机页的对应关系。
<meta name="mobile-agent"content="format=[wml|xhtml|html5]; url=url"> <!-- [wml|xhtml|html5]根据手机页的协议语言,选择其中一种; url="url" 后者代表当前PC页所对应的手机页URL,两者必须是一一对应关系。 -->
避免百度转码
<meta http-equiv="Cache-Control" content="no-siteapp" />
PC端:
优先使用 IE 最新版本和 Chrome
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
国内双核浏览器选择内核
<meta name="renderer" content="webkit"><!--使用极速核--> <meta name="renderer" content="ie-comp"> <!--使用IE兼容核--> <meta name="renderer" content="ie-stand"><!--使用IE标准核-->
注:本文大部分转自“菜鸟笔记”,原文链接http://www.runoob.com/w3cnote/meta.html
时间: 2024-10-13 23:11:10