• Html mate标签的常见功能


    一、常用的功能

    1.禁止屏幕缩放

    <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0;" name="viewport" />

    2.微信浏览器中禁止手机号识别,Emali识别

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

    3.WebApp全屏模式

    <meta name="apple-mobile-web-app-capable" content="yes" />

    4.禁止浏览器从本地计算机的缓存中访问页面内容

    <meta http-equiv="Pragma" content="no-cache">

    5.设置编码

    <meta http-equiv=″content-Type″ content=″text/html; charset=gb2312″>

    6.无操作后自动跳转(2秒)

    〈meta http-equiv=″refresh″ content=″2; URL="">

    7.移动设备

    <meta name="viewport" content="width=device-width, initial-scale=1.0,maximum-scale=1.0, user-scalable=no"/>

     8.设置网页到期时间(一旦过期则必须到服务器上重新调用。需要注意的是必须使用GMT时间格式  )和cookie到期时间(如果网页过期,存盘的cookie将被删除。需要注意的也是必须使用GMT时间格式  

    <meta http-equiv="expires" content="Mon,12 May 2001 00:20:00 GMT"> 

    <meta http-equiv="set-cookie" content="Mon,12 May 2001 00:20:00 GMT">

    9.向搜索引擎说明你的网页的关键词  和告诉搜索引擎你的站点的主要内容  (SEO优化)

    <meta name="keywords" content=""> 

    <meta name="description" content="">

    10.搜索引擎

     <meta name="robots" content="index,follow" />
      <!--
      all:文件将被检索,且页面上的链接可以被查询;
      none:文件将不被检索,且页面上的链接不可以被查询;
      index:文件将被检索;
      follow:页面上的链接可以被查询;
      noindex:文件将不被检索;
      nofollow:页面上的链接不可以被查询。
      -->

     

     

    二、mate标签的组成

        meta标签共有两个属性,它们分别是http-equiv属性和name属性,不同的属性又有不同的参数值,这些不同的参数值就实现了不同的网页功能。

        http://baike.baidu.com/item/META%E6%A0%87%E7%AD%BE?fr=aladdin

    
    
    
    
  • 相关阅读:
    UVALive 4764 简单dp水题(也可以暴力求解)
    poj 2151 概率DP(水)
    poj 2299 归并排序求逆序数 (可做模板)
    poj2388 更水
    poj1936 假期计划第一水
    poj 3080 kmp求解多个字符串的最长公共字串,(数据小,有点小暴力 16ms)
    UVA315:Network(求割点)
    POJ1236:Network of Schools (思维+Tarjan缩点)
    SPOJ
    HDU4305:Lightning(生成树计数+判断点是否在线段上)
  • 原文地址:https://www.cnblogs.com/chongyao/p/6423919.html
Copyright © 2020-2023  润新知