-
<meta name="robots" content="index, follow">
搜索引擎看到限制一般就会按照去做,这是一种约定,当然也可以不遵守这个约定- none:搜索引擎将忽略此网页,等价于noindex,nofollow。
- noindex:搜索引擎不索引此网页。
- nofollow:搜索引擎不继续通过此网页的链接索引搜索其它的网页。
- all:搜索引擎将索引此网页与继续通过此网页的链接索引,等价于index,follow。
- index:搜索引擎索引此网页。
- follow:搜索引擎继续通过此网页的链接索引搜索其它的网页。
<meta name="format-detection">
用于检测html里的一些格式,默认均为 yes,主要是有以下几个设置:
<meta name="format-detection" content="telephone=no">;
<meta name="format-detection" content="email=no">;
<meta name="format-detection" content="adress=no"> ;
也可以连写:
<meta name="format detection" content="telephone=no,email=no,adress=no">
<meta name="apple-mobile-web-app-capable" content="yes" />
网站开启对web app程序的支持。<meta name="apple-mobile-web-app-status-bar-style" content="black">
在web app应用下状态条(屏幕顶部条)的颜色;
默认值为default(白色),可以定为black(黑色)和black-translucent(灰色半透明)。
注意:若值为“black-translucent”将会占据页面位置,浮在页面上方(会覆盖页面20px高度–iphone4和itouch4的Retina屏幕为40px)。<meta name="apple-touch-fullscreen" content="yes">
"添加到主屏幕“后,全屏显示
content有两个值”yes”和”no”,默认为''no'',显示苹果工具栏和菜单栏。
iOS用rel="apple-touch-icon",android 用rel="apple-touch-icon-precomposed"。这样就能在用户把网页存为书签时,在手机HOME界面创建应用程序样式的图标。
- 禁用浏览器缓存效果,但不一定支持
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<meta http-equiv="refresh" content="30,url=/''>
30S后跳转到目标url,url无值时即刷新当前页面<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
移动端页面自适应视窗大小,并禁止双指缩放<meta http-equiv="x-ua-compatible" content="IE=Edge">
将采用浏览器支持的最高文档模式渲染页面