1. 程式人生 > >http meta

http meta

user idt pan 裏的 整理 -m soft 視圖 mini

參考文章:

HTTP --meta詳解 http://www.cnblogs.com/xiaoweizhi/p/4723848.html

meta標簽的作用及整理 http://blog.csdn.net/yc123h/article/details/51356143

Meta:

元數據(metadata)是關於數據的信息。其內容不會展現在頁面上,meta裏的數據是供機器解讀的,告訴機器該如何解析這個頁面。meta 元素被用於規定頁面的描述、關鍵詞、文檔的作者、最後修改時間等信息。

meta 由兩部分組成:

  • content
  • http-equiv | name|scheme

name常用屬性:

  • keywords (搜索引擎使用的關鍵字 <meta name="keywords" content="meta,元數據">)
  • author (作者 <meta name="author" content="root,[email protected]">)
  • description (頁面描述信息)
  • robots (robots用來告訴搜索機器人哪些頁面需要索引,哪些頁面不需要索引:content的參數有all,none,index,noindex,follow,nofollow。默認是all)
  • viewport (移動設備上使用視圖縮放<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0,minimum-scale=1.0,user-scalable=0" />)
  • copyright(版權歸屬 <meta name="copyright" content="http://www.Denny.com"/>)

  • date (設置網頁生成時間 <meta name="date" content="2008-07-12T20:50:30+00:00">)

http-equiv 常用屬性:

  • content-Type(顯示字符集的設定) <meta http-equiv="content-Type" content="text/html;charset=gb2312">
  • Refresh(刷新跳轉頁面) <meta http-equiv="refresh" content="5;${pageContext.request.contextPath}/***">
  • content-Language(顯示語言的設定) <meta http-equiv="Content-Language" content="zh-cn"/>
  • Expires(設置到期時間) <meta http-equiv="expires" content="Fri,12Jan200118:18:18GMT"> 必須使用GMT的時間格式
  • pragma(設置緩存周期) <meta http-equiv="pragma" content="no-cache" /> ()

同時不同瀏覽器又擴充自定義自己識別的name和value。

  

http meta