首页 > 网页制作 > html5

实例讲解HTML5的meta标签的一些应用

admin html5 2022-02-06 02:28:07 HTML5   meta"

HTML 4.01 与 HTML 5 之间meta标签用法的主要差异:

在 HTML 5 中,不再支持 scheme 属性。

在 HTML 5 中,有一个新的 charset 属性,它使字符集的定义更加容易。

在 HTML 4.01 中,不得不这么写:

XML/HTML Code复制内容到剪贴板
  1. <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">  

在 HTML 5 中,这样就够了:

XML/HTML Code复制内容到剪贴板
  1. <meta charset="ISO-8859-1">  

例子

定义针对搜索引擎的关键词:

XML/HTML Code复制内容到剪贴板
  1. <meta name="keywords" content="HTML, CSS, XML, XHTML, JavaScript" />  

定义对页面的描述:

XML/HTML Code复制内容到剪贴板
  1. <meta name="description" content="免费的 web 技术教程。" />  

定义页面的最新版本:

XML/HTML Code复制内容到剪贴板
  1. <meta name="revised" content="David, 2008/8/8/" />  

每 5 秒刷新一次页面:

XML/HTML Code复制内容到剪贴板
  1. <meta http-equiv="refresh" content="5" />  

属性
2015128114639927.png (639×396)

标准属性

class, contenteditable, contextmenu, dir, draggable, id, irrelevant, lang, ref, registrationmark, tabindex, template, title如需完整的描述,请访问 HTML 5 中标准属性。

事件属性

onabort, onbeforeunload, onblur, onchange, onclick, oncontextmenu, ondblclick, ondrag, ondragend, ondragenter, ondragleave, ondragover, ondragstart, ondrop, onerror, onfocus, onkeydown, onkeypress, onkeyup, onload, onmessage, onmousedown, onmousemove, onmouseover, onmouseout, onmouseup, onmousewheel, onresize, onscroll, onselect, onsubmit, onunload如需完整的描述,请访问 HTML 5 中事件属性。

 实例

文档描述

XML/HTML Code复制内容到剪贴板
  1. <html>  
  2. <head>  
  3. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />  
  4. <meta name="author" content="w3school.com.cn">  
  5. <meta name="revised" content="David Yang,8/1/07">  
  6. <meta name="generator" content="Dreamweaver 8.0en">  
  7. head>  
  8. <body>  
  9. <p>本文档的 meta 属性标识了创作者和编辑软件。p>  
  10. body>  
  11. html>  

Meta 元素中的信息可以描述 HTML 文档。

文档关键字

XML/HTML Code复制内容到剪贴板
  1. <html>  
  2. <head>  
  3. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />  
  4. <meta name="description" content="HTML examples">  
  5. <meta name="keywords" content="HTML, DHTML, CSS, XML, XHTML, JavaScript, VBScript">  
  6. head>  
  7. <body>  
  8. <p>本文档的 meta 属性描述了该文档和它的关键词。p>  
  9. body>  
  10. html>  

Meta 元素中的信息可以描述文档的关键词。

重定向

XML/HTML Code复制内容到剪贴板
  1. <html>  
  2. <head>  
  3. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />  
  4. <meta http-equiv="Refresh" content="5;url=http://www.w3school.com.cn">  
  5. head>  
  6. <body>  
  7. <p>  
  8. 对不起。我们已经搬家了。您的 URL 是 <a href="http://www.w3school.com.cn"> http://www.w3school.com.cn a>  
  9. p>  
  10. <p>您将在 5 秒内被重定向到新的地址。p>  
  11. <p>如果超过 5 秒后您仍然看到本消息,请点击上面的的链接。p>  
  12. body>  
  13. html>  

这个例子演示:在网址已经变更的情况下,将用户重定向到另外一个地址。

移动前端开发中添加一些webkit专属的HTML5头部标签,帮助浏览器更好解析html代码,更好地将移动web前端页面表现出来。本文整理一些常用的meta标签。

XML/HTML Code复制内容到剪贴板
  1. >   
  2. <html lang="zh-cmn-Hans">   
  3. <head>  
  4.       
  5.     <meta charset='utf-8'>  
  6.       
  7.     <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>  
  8.       
  9.     <meta name="description" content="不超过150个字符"/>  
  10.       
  11.     <meta name="keywords" content=""/>  
  12.       
  13.     <meta name="author" content="name, email@gmail.com"/>  
  14.       
  15.     <meta name="robots" content="index,follow"/>  
  16.       
  17.     <meta name="viewport" content="initial-scale=1, maximum-scale=3, minimum-scale=1, user-scalable=no">  
  18.       
  19.     
  20.       
  21.     <meta name="apple-mobile-web-app-title" content="标题">  
  22.       
  23.     <meta name="apple-mobile-web-app-capable" content="yes"/>  
  24.       
  25.     
  26.     <meta name="apple-itunes-app" content="app-id=myAppStoreID, affiliate-data=myAffiliateData, app-argument=myURL">  
  27.       
  28.     <meta name="apple-mobile-web-app-status-bar-style" content="black"/>  
  29.       
  30.     <meta name="format-detection" content="telphone=no, email=no"/>  
  31.       
  32.       
  33.     <meta name="renderer" content="webkit">  
  34.       
  35.     <meta http-equiv="X-UA-Compatible" content="IE=edge">  
  36.       
  37.     <meta http-equiv="Cache-Control" content="no-siteapp" />  
  38.       
  39.     <meta name="HandheldFriendly" content="true">  
  40.       
  41.     <meta name="MobileOptimized" content="320">  
  42.       
  43.     <meta name="screen-orientation" content="portrait">  
  44.       
  45.     <meta name="x5-orientation" content="portrait">  
  46.       
  47.     <meta name="full-screen" content="yes">  
  48.       
  49.     <meta name="x5-fullscreen" content="true">  
  50.       
  51.     <meta name="browsermode" content="application">  
  52.       
  53.     <meta name="x5-page-mode" content="app">  
  54.       
  55.     <meta name="msapplication-tap-highlight" content="no">  
  56.       
  57.     <link rel="apple-touch-icon-precomposed" href="/apple-touch-icon-57x57-precomposed.png"/>  
  58.       
  59.     <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/apple-touch-icon-114x114-precomposed.png"/>  
  60.       
  61.     <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/apple-touch-icon-144x144-precomposed.png"/>  
  62.       
  63.       
  64.     
  65.       
  66.     <link rel="apple-touch-startup-image" sizes="768x1004" href="/splash-screen-768x1004.png"/>  
  67.       
  68.     <link rel="apple-touch-startup-image" sizes="1536x2008" href="/splash-screen-1536x2008.png"/>  
  69.       
  70.     <link rel="apple-touch-startup-image" sizes="1024x748" href="/Default-Portrait-1024x748.png"/>  
  71.       
  72.     <link rel="apple-touch-startup-image" sizes="2048x1496" href="/splash-screen-2048x1496.png"/>  
  73.       
  74.     
  75.     <link rel="apple-touch-startup-image" href="/splash-screen-320x480.png"/>  
  76.       
  77.     <link rel="apple-touch-startup-image" sizes="640x960" href="/splash-screen-640x960.png"/>  
  78.       
  79.     <link rel="apple-touch-startup-image" sizes="640x1136" href="/splash-screen-640x1136.png"/>  
  80.       
  81.       
  82.     
  83.       
  84.     <meta name="msapplication-TileColor" content="#000"/>  
  85.       
  86.     <meta name="msapplication-TileImage" content="icon.png"/>  
  87.       
  88.     
  89.     <link rel="alternate" type="application/rss+xml" title="RSS" href="/rss.xml"/>  
  90.       
  91.     <link rel="shortcut icon" type="image/ico" href="/favicon.ico"/>  
  92.       
  93.   
  94.       
  95.       
  96.     <meta property="og:type" content="类型" />  
  97.     <meta property="og:url" content="URL地址" />  
  98.     <meta property="og:title" content="标题" />  
  99.     <meta property="og:image" content="图片" />  
  100.     <meta property="og:description" content="描述" />  
  101.       
  102.     
  103.     <title>标题title>  
  104. head>  
版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。
本文地址:/web/html5/75522.html

留言与评论(共有 0 条评论)
   
验证码:

潘少俊衡

| 桂ICP备2023010378号-4

Powered By EmpireCMS

爱享小站

中德益农

谷姐神农

环亚肥料

使用手机软件扫描微信二维码

关注我们可获取更多热点资讯

感谢潘少俊衡友情技术支持