meta标签
1.告诉IE使用最新的引擎渲染网页 <meta http-equiv="X-UA-Compatible" content="IE=Edge"> 2.用360浏览器打开页面时希望默认打开页面为 极速模式 若页面需默认用极速核,增加标签:<meta name="renderer" content="webkit"> 若页面需默认用ie兼容内核,增加标签:<meta name="renderer" content="ie-comp"> 若页面需默认用ie标准内核,增加标签:<meta name="renderer" content="ie-stand">
name 属性
(1)、<meta name="Generator" contect="">用以说明生成工具(如Microsoft FrontPage 4.0)等;
(2)、<meta name="keywords" contect="">向搜索引擎说明你的网页的关键词;
(3)、<meta name="Description" contect="">告诉搜索引擎你的站点的主要内容;
(4)、<meta name="Author" contect="你的姓名">告诉搜索引擎你的站点的制作的作者;
(5)、<meta name="Robots" contect="all | none | index | noindex | follow | nofollow">
其中的属性说明如下:
设定为all:文件将被检索,且页面上的链接可以被查询;
设定为none:文件将不被检索,且页面上的链接不可以被查询;
设定为index:文件将被检索;
设定为follow:页面上的链接可以被查询;
设定为noindex:文件将不被检索,但页面上的链接可以被查询;
设定为nofollow:文件将不被检索,页面上的链接可以被查询