您的位置:首页 > Web前端

web前端 常用meta标签

2015-11-12 20:10 381 查看
设置编码信息

<metahttp-equiv="Content-Type" Content="text/html;Charset=utf-8" />

设置语言

<metahttp-equiv="Content-Language" Content="zh-CN" />

设置重定向

<meta http-equiv="Refresh"Content="15; Url=http://www.baidu.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-->

<metahttp-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 点击无高光 -->

<metaname="msapplication-tap-highlight" content="no">

<!-- 禁止转码 -->

<metahttp-equiv="Cache-Control" content="no-siteapp" />

禁止数字识自动别为电话号码

<meta name="format-detection"content="telephone=no" />

禁止识别邮箱

<meta name="format-detection"content="email=no" />

 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: