欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

HTML5学习手册

程序员文章站 2023-10-27 09:14:22
[TOC] HTML 简介 HTML 简介 什么是 HTML? HTML 是用来描述网页的一种语言。 HTML 指的是超文本标记语言 (Hyper Text Markup Language) HTML 不是一种编程语言,而是一种标记语言 (markup language) 标记语言是一套标记标签 ( ......

目录

html 简介

html 简介


<html>
<body>

<h1>my first heading</h1>

<p>my first paragraph.</p>

</body>
</html>

什么是 html?


  • html 是用来描述网页的一种语言。
  • html 指的是超文本标记语言 (hyper text markup language)
  • html 不是一种编程语言,而是一种标记语言 (markup language)
  • 标记语言是一套标记标签 (markup tag)
  • html 使用标记标签来描述网页

html 标签


  • html 标记标签通常被称为 html 标签 (html tag)。
  • html 标签是由尖括号包围的关键词,比如
  • html 标签通常是成对出现的,比如 <b></b>
  • 标签对中的第一个标签是开始标签,第二个标签是结束标签
  • 开始和结束标签也被称为开放标签和闭合标签

html 文档 = 网页


  • html 文档描述网页
  • html 文档包含 html 标签和纯文本
  • html 文档也被称为网页

web 浏览器的作用是读取 html 文档,并以网页的形式显示出它们。浏览器不会显示 html 标签,而是使用标签来解释页面的内容:

<html>
<body>

<h1>my first heading</h1>

<p>my first paragraph.</p>

</body>
</html>

例子解释

<html> 与 </html> 之间的文本描述网页
<body> 与 </body> 之间的文本是可见的页面内容
<h1> 与 </h1> 之间的文本被显示为标题
<p> 与 </p> 之间的文本被显示为段落

基本的 html 标签 - 四个实例


html 标题


html 标题(heading)是通过 <h1> - <h6> 等标签进行定义的。

<h1>this is a heading</h1>
<h2>this is a heading</h2>
<h3>this is a heading</h3>

html 段落


html 段落是通过 <p>标签进行定义的。

<p>this is a paragraph.</p>
<p>this is another paragraph.</p>

html 链接


html 链接是通过<a> 标签进行定义的。

<a href="http://www.w3school.com.cn">this is a link</a>

注释:在 href 属性中指定链接的地址,href是hypertext reference的缩写。

html 图像


html 图像是通过 <img>标签进行定义的。

<img src="w3school.jpg" width="104" height="142" />

注释:图像的名称和尺寸是以属性的形式提供的。

html 元素


html 文档是由 html 元素定义的。


html 元素


html 元素指的是从开始标签(start tag)到结束标签(end tag)的所有代码。

HTML5学习手册

注释:开始标签常被称为开放标签(opening tag),结束标签常称为闭合标签(closing tag)。

html 元素语法


  • html 元素以开始标签起始
  • html 元素以结束标签终止
  • 元素的内容是开始标签与结束标签之间的内容
  • 某些 html 元素具有空内容(empty content)
  • 空元素在开始标签中进行关闭(以开始标签的结束而结束)
  • 大多数 html 元素可拥有属性

嵌套的 html 元素


  • 大多数 html 元素可以嵌套(可以包含其他 html 元素)。
  • html 文档由嵌套的 html 元素构成。

html 文档实例

<html>

<body>
<p>this is my first paragraph.</p>
</body>

</html>

上面的例子包含三个 html 元素

html 实例解释


<p>this is my first paragraph.</p>

<p> 元素:
这个<p> 元素定义了 html 文档中的一个段落。
这个元素拥有一个开始标签 <p>,以及一个结束标签 </p>
元素内容是:this is my first paragraph。

<body>
<p>this is my first paragraph.</p>
</body>

<body> 元素:
<body> 元素定义了 html 文档的主体。
这个元素拥有一个开始标签 <body>,以及一个结束标签 </body>
元素内容是另一个 html 元素(p 元素)。

<html> 元素:
<html>

<body>
<p>this is my first paragraph.</p>
</body>

</html>

<html>元素定义了整个 html 文档。
这个元素拥有一个开始标签 <html>,以及一个结束标签</html>
元素内容是另一个 html 元素(body 元素)。

不要忘记结束标签


即使您忘记了使用结束标签,大多数浏览器也会正确地显示 html:

<p>this is a paragraph
<p>this is a paragraph


上面的例子在大多数浏览器中都没问题,但不要依赖这种做法。忘记使用结束标签会产生不可预料的结果或错误。

注释:未来的 html 版本不允许省略结束标签。

空的 html 元素


没有内容的 html 元素被称为空元素。空元素是在开始标签中关闭的。
<br> 就是没有关闭标签的空元素(<br> 标签定义换行)。
在 xhtml、xml 以及未来版本的 html 中,所有元素都必须被关闭。
在开始标签中添加斜杠,比如 <br />,是关闭空元素的正确方法,html、xhtml 和 xml 都接受这种方式。
即使 <br> 在所有浏览器中都是有效的,但使用 <br />其实是更长远的保障。

html 提示:使用小写标签


html 标签对大小写不敏感:<p> 等同于 <p>。许多网站都使用大写的 html 标签。

html 属性


属性为 html 元素提供附加信息。


html 属性


  • html 标签可以拥有属性。属性提供了有关 html 元素的更多的信息。
  • 属性总是以名称/值对的形式出现,比如:name="value"。
  • n属性总是在 html 元素的开始标签中规定。

属性实例


html 链接由 <a> 标签定义。链接的地址在 href 属性中指定:

<a href="http://www.w3school.com.cn">this is a link</a>
<html>

<body>

<h1 align="center">this is heading 1</h1>
<p>上面的标题在页面中进行了居中排列。上面的标题在页面中进行了居中排列。上面的标题在页面中进行了居中排列。</p>
</body>
</html>

HTML5学习手册

<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<meta http-equiv="content-language" content="zh-cn" />
</head>

<body bgcolor="yellow">
<h2>请看: 改变了颜色的背景。</h2>
</body>

</html>

HTML5学习手册

html 提示:使用小写属性,属性和属性值对大小写不敏感。

始终为属性值加引号

  • 属性值应该始终被包括在引号内。双引号是最常用的,不过使用单引号也没有问题。
  • 在某些个别的情况下,比如属性值本身就含有双引号,那么您必须使用单引号,例如:
name='bill "helloworld" gates'

完整的 html 参考手册

HTML5学习手册

html 标准属性参考手册

HTML5学习手册

html 标题


在 html 文档中,标题很重要。


html 标题


标题(heading)是通过 <h1> - <h6> 等标签进行定义的。
<h1> 定义最大的标题。<h6> 定义最小的标题。

<h1>this is a heading</h1>
<h2>this is a heading</h2>
<h3>this is a heading</h3>

注释:浏览器会自动地在标题的前后添加空行。
注释:默认情况下,html 会自动地在块级元素前后添加一个额外的空行,比如段落、标题元素前后。

标题很重要

请确保将 html heading 标签只用于标题。不要仅仅是为了产生粗体或大号的文本而使用标题。
搜索引擎使用标题为您的网页的结构和内容编制索引。
因为用户可以通过标题来快速浏览您的网页,所以用标题来呈现文档结构是很重要的。
应该将 h1 用作主标题(最重要的),其后是 h2(次重要的),再其次是 h3,以此类推。

html 水平线

<hr />

  • <hr /> 标签在 html 页面中创建水平线。
  • hr元素可用于分隔内容。

提示:使用水平线 (<hr>标签) 来分隔文章中的小节是一个办法(但并不是唯一的办法)。

html 注释


<!-- this is a comment -->

注释:开始括号之后(左边的括号)需要紧跟一个叹号,结束括号之前(右边的括号)不需要。

html 提示 - 如何查看源代码


右键 --> “查看源文件”(ie)||“查看页面源代码”(firefox)|| 检查元素(safari)

html 段落


  • 段落是通过 <p> 标签定义的。
<p>this is a paragraph</p>
<p>this is another paragraph</p>

注释:浏览器会自动地在段落的前后添加空行。(<p> 是块级元素)
提示:使用空的段落标记 <p></p> 去插入一个空行是个坏习惯。用 <br />标签代替它!但是不要用 <br /> 标签去创建列表

  • 不要忘记结束标签
  • 即使忘了使用结束标签,大多数浏览器也会正确地将 html 显示出来:
<p>this is a paragraph
<p>this is another paragraph


上面的例子在大多数浏览器中都没问题,但不要依赖这种做法。忘记使用结束标签会产生意想不到的结果和错误。

注释:在未来的 html 版本中,不允许省略结束标签。
提示:通过结束标签来关闭 html 是一种经得起未来考验的 html 编写方法。清楚地标记某个元素在何处开始,并在何处结束,不论对您还是对浏览器来说,都会使代码更容易理解。

html 折行


如果您希望在不产生一个新段落的情况下进行换行(新行),请使用 <br />标签:

<p>this is<br />a para<br />graph with line breaks</p>
<br /> 元素是一个空的 html 元素。由于关闭标签没有任何意义,因此它没有结束标签。
您也许发现 <br> 与 <br /> 很相似。
在 xhtml、xml 以及未来的 html 版本中,不允许使用没有结束标签(闭合标签)的 html 元素。
即使 <br> 在所有浏览器中的显示都没有问题,使用 <br /> 也是更长远的保障。

html 输出 - 有用的提示


我们无法确定 html 被显示的确切效果。屏幕的大小,以及对窗口的调整都可能导致不同的结果。
对于 html,您无法通过在 html 代码中添加额外的空格或换行来改变输出的效果。

当显示页面时,浏览器会移除源代码中多余的空格和空行。所有连续的空格或空行都会被算作一个空格。需要注意的是,html 代码中的所有连续的空行(换行)也被显示为一个空格。

html 文本格式化


  • html 可定义很多供格式化输出的元素,比如粗体和斜体字。
    下面有很多例子,您可以亲自试试:
    ___

文本格式化


<html>
<body>
<b>this text is bold</b>
<br />
<strong>this text is strong</strong>
<br />
<big>this text is big</big>
<br />
<em>this text is emphasized</em>
<br />
<i>this text is italic</i>
<br />
<small>this text is small</small>
<br />
this text contains
<sub>subscript</sub>
<br />
this text contains
<sup>superscript</sup>
</body>
</html>

HTML5学习手册

预格式文本


<html>

<body>

<pre>
这是
预格式文本。
它保留了      空格
和换行。
</pre>

<p>pre 标签很适合显示计算机代码:</p>
<pre>
for i = 1 to 10
print i
next i
</pre>

</body>
</html>

HTML5学习手册

“计算机输出”标签


<html>

<body>

<code>computer code</code>
<br />
<kbd>keyboard input</kbd>
<br />
<tt>teletype text</tt>
<br />
<samp>sample text</samp>
<br />
<var>computer variable</var>
<br />

<p>
<b>注释:</b>这些标签常用于显示计算机/编程代码。
</p>

</body>
</html>

HTML5学习手册

地址


<!doctype html>
<html>
<body>

<address>
written by <a href="mailto:webmaster@example.com">donald duck</a>.<br> 
visit us at:<br>
example.com<br>
box 564, disneyland<br>
usa
</address>

</body>
</html>

HTML5学习手册

缩写和首字母缩写


<html>

<body>

<abbr title="etcetera">etc.</abbr>
<br />
<acronym title="world wide web">www</acronym>

<p>在某些浏览器中,当您把鼠标移至缩略词语上时,title 可用于展示表达的完整版本。</p>
<p>仅对于 ie 5 中的 acronym 元素有效。</p>
<p>对于 netscape 6.2 中的 abbr 和 acronym 元素都有效。</p>
</body>
</html>

HTML5学习手册

文字方向


<html>

<body>

<p>
如果您的浏览器支持 bi-directional override (bdo),下一行会从右向左输出 (rtl);
</p>

<bdo dir="rtl">
here is some hebrew text
</bdo>

</body>
</html>

HTML5学习手册

块引用


<html>

<body>

这是长的引用:
<blockquote>
这是长的引用。这是长的引用。这是长的引用。这是长的引用。这是长的引用。这是长的引用。这是长的引用。这是长的引用。这是长的引用。这是长的引用。这是长的引用。
</blockquote>

这是短的引用:
<q>
这是短的引用。
</q>

<p>
使用 blockquote 元素的话,浏览器会插入换行和外边距,而 q 元素不会有任何特殊的呈现。
</p>

</body>
</html>

HTML5学习手册

删除字效果和插入字效果


<html>

<body>

<p>一打有 <del>二十</del> <ins>十二</ins> 件。</p>
<p>大多数浏览器会改写为删除文本和下划线文本。</p>
<p>一些老式的浏览器会把删除文本和下划线文本显示为普通文本。</p>
</body>
</html>

HTML5学习手册

文本格式化标签
HTML5学习手册

计算机输出”标签
HTML5学习手册

引用、引用和术语定义
HTML5学习手册

html 编辑器


使用 notepad 或 textedit 来编写 html

可以使用专业的 html 编辑器来编辑 html:

  • adobe dreamweaver
  • microsoft expression web
  • coffeecup html editor

不过,我们同时推荐使用文本编辑器来学习 html,比如 notepad (pc) 或 textedit (mac)。我们相信,使用一款简单的文本编辑器是学习 html 的好方法。
通过记事本,依照以下四步来创建您的第一张网页。

当您保存 html 文件时,既可以使用 .htm 也可以使用 .html 扩展名


html cs


通过使用 html4.0,所有的格式化代码均可移出 html 文档,然后移入一个独立的样式表。


  • html中的样式

本例演示如何使用添加到 <head> 部分的样式信息对 html 进行格式化。

<html>

<head>
<style type="text/css">
h1 {color: red}
p {color: blue}
</style>
</head>

<body>
<h1>header 1</h1>
<p>a paragraph.</p>
</body>

</html>
  • 没有下划线的链接

本例演示如何使用样式属性做一个没有下划线的链接。

<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<meta http-equiv="content-language" content="zh-cn" />
</head>

<body>

<a href="www.baidu.com" style="text-decoration:none">
这是一个链接!
</a>

</body>

</html>

HTML5学习手册

  • 链接到一个外部样式表

本例演示如何<link>标签链接到一个外部样式表。

<html>

<head>
<link rel="stylesheet" type="text/css" href="/html/csstest1.css" >
</head>

<body>
<h1>我通过外部样式表进行格式化。</h1>
<p>我也一样!</p>
</body>

</html>

HTML5学习手册

如何使用样式


当浏览器读到一个样式表,它就会按照这个样式表来对文档进行格式化。有以下三种方式来插入样式表:


1.外部样式表

当样式需要被应用到很多页面的时候,外部样式表将是理想的选择。使用外部样式表,你就可以通过更改一个文件来改变整个站点的外观。

<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>

2.内部样式表

当单个文件需要特别样式时,就可以使用内部样式表。你可以在 head 部分通过 <style> 标签定义内部样式表。

<head>

<style type="text/css">
body {background-color: red}
p {margin-left: 20px}
</style>
</head>

3.内联样式

当特殊的样式需要应用到个别元素时,就可以使用内联样式。 使用内联样式的方法是在相关的标签中使用样式属性。样式属性可以包含任何 css 属性。以下实例显示出如何改变段落的颜色和左外边距。

<p style="color: red; margin-left: 20px">
this is a paragraph
</p>

HTML5学习手册

html 链接


html 使用超级链接与网络上的另一个文档相连。
几乎可以在所有的网页中找到链接。点击链接可以从一张页面跳转到另一张页面。


html 超链接(链接)


超链接可以是一个字,一个词,或者一组词,也可以是一幅图像,您可以点击这些内容来跳转到新的文档或者当前文档中的某个部分。
当您把鼠标指针移动到网页中的某个链接上时,箭头会变为一只小手。
我们通过使用 <a> 标签在 html 中创建链接。
有两种使用 <a> 标签的方式:
1.通过使用 href 属性 - 创建指向另一个文档的链接
2.通过使用 name 属性 - 创建文档内的书签

html 链接语法


链接的 html 代码很简单。它类似这样:

<a href="url">link text</a>
  • href 属性规定链接的目标。
  • 开始标签和结束标签之间的文字被作为超级链接来显示。
<a href="http://www.w3school.com.cn/">visit w3school</a>

上面这行代码显示为:visit w3school
点击这个超链接会把用户带到 w3school 的首页。

提示:"链接文本" 不必一定是文本。图片或其他 html 元素都可以成为链接。

html 链接 - target 属性


使用 target 属性,你可以定义被链接的文档在何处显示。
下面的这行会在新窗口打开文档:

<a href="http://www.w3school.com.cn/" target="_blank">visit w3school!</a>

html 链接 - name 属性


name 属性规定锚(anchor)的名称。
您可以使用 name 属性创建 html 页面中的书签。
书签不会以任何特殊方式显示,它对读者是不可见的。
当使用命名锚(named anchors)时,我们可以创建直接跳至该命名锚(比如页面中某个小节)的链接,这样使用者就无需不停地滚动页面来寻找他们需要的信息了。

命名锚的语法:

<a name="label">锚(显示在页面上的文本)</a>

提示:锚的名称可以是任何你喜欢的名字。
提示:您可以使用 id 属性来替代 name 属性,命名锚同样有效。

实例

1.首先,我们在 html 文档中对锚进行命名(创建一个书签):

<a name="tips">基本的注意事项 - 有用的提示</a>

2.然后,我们在同一个文档中创建指向该锚的链接:

<a href="#tips">有用的提示</a>

3.您也可以在其他页面中创建指向该锚的链接:

<a href="http://www.w3school.com.cn/html/html_links.asp#tips">有用的提示</a>

在上面的代码中,我们将 # 符号和锚名称添加到 url 的末端,就可以直接链接到 tips 这个命名锚了。

有用的提示

具体效果就是点击“有用的提示”跳转到相应位置,如同书签

基本的注意事项 - 有用的提示:


注释:请始终将正斜杠添加到子文件夹。假如这样书写链接:href="http://www.w3school.com.cn/html"
,就会向服务器产生两次 http 请求。这是因为服务器会添加正斜杠到这个地址,然后创建一个新的请求,就像这样:href="http://www.w3school.com.cn/html/"

提示:命名锚经常用于在大型文档开始位置上创建目录。可以为每个章节赋予一个命名锚,然后把链接到这些锚的链接放到文档的上部。如果您经常访问百度百科,您会发现其中几乎每个词条都采用这样的导航方式。

提示:假如浏览器找不到已定义的命名锚,那么就会定位到文档的顶端。不会有错误发生。

实例


  • 创建超级链接
<html>
<body>
<p>
<p><a href="http://www.baidu.com/">打开百度</a> 百度</p>
</body>
</html>
  • 将图像作为链接
<html>
<body>
<p>
您也可以使用图像来作链接:
<a href="http://scimg.jb51.net/allimg/160518/14-16051q51020515.jpg">
<img border="0" src="http://scimg.jb51.net/allimg/160518/14-16051pz1525c.jpg" />
</a>
</p>
</body>
</html>
  • 在新的浏览器窗口打开链接
<html>
<body>
<a href="http://www.w3school.com.cn/" target="_blank">visit w3school!</a>
<p>如果把链接的 target 属性设置为 "_blank",该链接会在新窗口中打开。
</p>
</body>
</html>
  • 链接到同一个页面的不同位置
<html>
<body>

<p>被锁在框架中了吗?</p> 
<a href="/index.html"
target="_top">请点击这里!</a> 

</body>
</html>
  • 创建电子邮件链接
<html>
<body>
<p>
这是另一个 mailto 链接:
<a href="mailto:someone@microsoft.com?cc=someoneelse@microsoft.com&bcc=andsomeoneelse2@microsoft.com&subject=summer%20party&body=you%20are%20invited%20to%20a%20big%20summer%20party!">发送邮件!</a>
</p>
<p>
<b>注意:</b>应该使用 %20 来替换单词之间的空格,这样浏览器就可以正确地显示文本了。
</p>
</body>
</html>


<html>

<body>

<p>
这是邮件链接:
<a href="mailto:someone@microsoft.com?subject=hello%20again">发送邮件</a>
</p>

<p>
<b>注意:</b>应该使用 %20 来替换单词之间的空格,这样浏览器就可以正确地显示文本了。
</p>

</body>
</html>

html 图像


图像标签(<img>)和源属性(src


在 html 中,图像由 <img> 标签定义。
<img> 是空标签,意思是说,它只包含属性,并且没有闭合标签。
要在页面上显示图像,你需要使用源属性(src)。src 指 "source"。源属性的值是图像的 url 地址。
定义图像的语法是:
<img src="url" />
  • url 指存储图像的位置。如果名为 "boat.gif" 的图像位于 www.w3school.com.cn 的 images 目录中,那么其 url 为 http://www.w3school.com.cn/images/boat.gif
  • 浏览器将图像显示在文档中图像标签出现的地方。如果你将图像标签置于两个段落之间,那么浏览器会首先显示第一个段落,然后显示图片,最后显示第二段。

替换文本属性(alt)


  • alt 属性用来为图像定义一串预备的可替换的文本。替换文本属性的值是用户定义的。
<img src="boat.gif" alt="big boat">

在浏览器无法载入图像时,替换文本属性告诉读者她们失去的信息。此时,浏览器将显示这个替代性的文本而不是图像。为页面上的图像都加上替换文本属性是个好习惯,这样有助于更好的显示信息,并且对于那些使用纯文本浏览器的人来说是非常有用的。

基本的注意事项 - 有用的提示:


假如某个 html 文件包含十个图像,那么为了正确显示这个页面,需要加载 11 个文件。加载图片是需要时间的,所以我们的建议是:慎用图片。

实例


  • 插入图像
<!doctype html>
<html>

<body>

<p>
一幅图像:
<img src="/i/eg_mouse.jpg" width="128" height="128" />
</p>

<p>
一幅动画图像:
<img src="/i/eg_cute.gif" width="50" height="50" />
</p>
<p>请注意,插入动画图像的语法与插入普通图像的语法没有区别。</p>
</body>
</html>
  • 从不同的位置插入图片
来自另一个文件夹的图像:
<img src="/i/ct_netscape.jpg" />
来自 w3school.com.cn 的图像:
<img src="http://www.w3school.com.cn/i/w3school_logo_white.gif" />
  • 背景图片
<html>

<body background="/i/eg_background.jpg">

<h3>图像背景</h3>
<p>gif 和 jpg 文件均可用作 html 背景。</p>
<p>如果图像小于页面,图像会进行重复。</p>
</body>
</html>
  • 排列图片
<html>

<body>

<h2>未设置对齐方式的图像:</h2>
<p>图像 <img src ="/i/eg_cute.gif"> 在文本中</p>
<h2>已设置对齐方式的图像:</h2>
<p>图像 <img src="/i/eg_cute.gif" align="bottom"> 在文本中</p>
<p>图像 <img src ="/i/eg_cute.gif" align="middle"> 在文本中</p>
<p>图像 <img src ="/i/eg_cute.gif" align="top"> 在文本中</p>
<p>请注意,bottom 对齐方式是默认的对齐方式。</p>
</body>
</html>

HTML5学习手册

  • 浮动图像
<html>

<body>

<p>
<img src ="/i/eg_cute.gif" align ="left"> 
带有图像的一个段落。图像的 align 属性设置为 "left"。图像将浮动到文本的左侧。
</p>

<p>
<img src ="/i/eg_cute.gif" align ="right"> 
带有图像的一个段落。图像的 align 属性设置为 "right"。图像将浮动到文本的右侧。
</p>

</body>
</html>

HTML5学习手册

  • 调整图像尺寸
<img src="/i/eg_mouse.jpg" width="50" height="50">
- 为图片显示替换文本

​```html
<p>仅支持文本的浏览器无法显示图像,仅仅能够显示在图像的 "alt" 属性中指定的文本。在这里,"alt" 的文本是“向左转”。</p>
<p>请注意,如果您把鼠标指针移动到图像上,大多数浏览器会显示 "alt" 文本。</p>
<img src="/i/eg_goleft.gif" alt="向左转" />

<p>如果无法显示图像,将显示 "alt" 属性中的文本:</p>
  • 创建图像映射
<html>
<body>

<p>请点击图像上的星球,把它们放大。</p>
<img
src="/i/eg_planets.jpg"
border="0" usemap="#planetmap"
alt="planets" />

<map name="planetmap" id="planetmap">

<area
shape="circle"
coords="180,139,14"
href ="/example/html/venus.html"
target ="_blank"
alt="venus" />

<area
shape="circle"
coords="129,161,10"
href ="/example/html/mercur.html"
target ="_blank"
alt="mercury" />

<area
shape="rect"
coords="0,0,110,260"
href ="/example/html/sun.html"
target ="_blank"
alt="sun" />

</map>

<p><b>注释:</b>img 元素中的 "usemap" 属性引用 map 元素中的 "id" 或 "name" 属性(根据浏览器),所以我们同时向 map 元素添加了 "id" 和 "name" 属性。</p>
</body>
</html>

HTML5学习手册

  • 把图像转换为图像映射
<!doctype html>
<html>

<body>

<p>请把鼠标移动到图像上,看一下状态栏的坐标如何变化。</p>
<a href="/example/html/html_ismap.html">
<img src="/i/eg_planets.jpg" ismap />
</a>

</body>
</html>

HTML5学习手册

HTML5学习手册

html 表格

你可以使用 html 创建表格。

表格


<table border="1"><th>说明</th><tr><tr>
表格由 <table> 标签来定义。每个表格均有若干行(由 <tr> 标签定义),每行被分割为若干单元格(由 <td> 标签定义)。字母 td 指表格数据(table data),即数据单元格的内容。数据单元格可以包含文本、图片、列表、段落、表单、水平线、表格等等。

<table border="1">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>

表格和边框属性


如果不定义边框属性,表格将不显示边框。有时这很有用,但是大多数时候,我们希望显示边框。
使用边框属性来显示一个带有边框的表格:

<table border="1">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
</table>

表格的表头


表格的表头使用 <th>标签进行定义。
大多数浏览器会把表头显示为粗体居中的文本:

<table border="1">
<tr>
<th>heading</th>
<th>another heading</th>
</tr>
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>

表格中的空单元格


在一些浏览器中,没有内容的表格单元显示得不太好。如果某个单元格是空的(没有内容),浏览器可能无法显示出这个单元格的边框。

<table border="1">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td></td>
<td>row 2, cell 2</td>
</tr>
</table>

注意:这个空的单元格的边框没有被显示出来。为了避免这种情况,在空单元格中添加一个空格占位符,就可以将边框显示出来。

<table border="1">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>row 2, cell 2</td>
</tr>
</table>

实例


  • 没有边框的表格
<h4>这个表格没有边框:</h4>
<table>
/* 或则是这句<table border="0"> */
<tr>
<td>100</td>
<td>200</td>
<td>300</td>
</tr>
<tr>
<td>400</td>
<td>500</td>
<td>600</td>
</tr>
</table>

HTML5学习手册

  • 表格中的表头(heading)
<html>
<body>
<h4>表头:</h4>
<table border="1">
<tr>
<th>姓名</th>
<th>电话</th>
<th>电话</th>
</tr>
<tr>
<td>bill gates</td>
<td>555 77 854</td>
<td>555 77 855</td>
</tr>
</table>
<h4>垂直的表头:</h4>
<table border="1">
<tr>
<th>姓名</th>
<td>bill gates</td>
</tr>
<tr>
<th>电话</th>
<td>555 77 854</td>
</tr>
<tr>
<th>电话</th>
<td>555 77 855</td>
</tr>
</table>
</body>
</html>

HTML5学习手册

  • 空单元格
<html>
<body>
<table border="1">
<tr>
<td>some text</td>
<td>some text</td>
</tr>
<tr>
<td></td>
<td>some text</td>
</tr>
</table>
<p>正如您看到的,其中一个单元没有边框。这是因为它是空的。在该单元中插入一个空格后,仍然没有边框。</p>
<p>我们的技巧是在单元中插入一个 no-breaking 空格。</p>
<p>no-breaking 空格是一个字符实体。如果您不清楚什么是字符实体,请阅读关于字符实体的章节。</p>
<p>no-breaking 空格由和号开始 ("&"),然后是字符"nbsp",并以分号结尾(";")。</p>
</body>
</html>

HTML5学习手册

  • 带有标题的表格
<html>

<body>

<h4>这个表格有一个标题,以及粗边框:</h4>
<table border="6">
<caption>我的标题</caption>
<tr>
<td>100</td>
<td>200</td>
<td>300</td>
</tr>
<tr>
<td>400</td>
<td>500</td>
<td>600</td>
</tr>
</table>
</body>

HTML5学习手册

  • 跨行或跨列的表格单元格
<html>

<body>

<h4>横跨两列的单元格:</h4>
<table border="1">
<tr>
<th>姓名</th>
<th colspan="2">电话</th>
</tr>
<tr>
<td>bill gates</td>
<td>555 77 854</td>
<td>555 77 855</td>
</tr>
</table>
<h4>横跨两行的单元格:</h4>
<table border="1">
<tr>
<th>姓名</th>
<td>bill gates</td>
</tr>
<tr>
<th rowspan="2">电话</th>
<td>555 77 854</td>
</tr>
<tr>
<td>555 77 855</td>
</tr>
</table>
</body>
</html>

HTML5学习手册

  • 表格内的标签
<html>

<body>

<table border="1">
<tr>
<td>
<p>这是一个段落。</p>
<p>这是另一个段落。</p>
</td>
<td>这个单元包含一个表格:
<table border="1">
<tr>
<td>a</td>
<td>b</td>
</tr>
<tr>
<td>c</td>
<td>d</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>这个单元包含一个列表:
<ul>
<li>苹果</li>
<li>香蕉</li>
<li>菠萝</li>
</ul>
</td>
<td>hello</td>
</tr>
</table>
</body>
</html>

HTML5学习手册

  • 单元格边距(cell padding)
<html>

<body>

<h4>没有 cellpadding:</h4>
<table border="1">
<tr>
<td>first</td>
<td>row</td>
</tr>   
<tr>
<td>second</td>
<td>row</td>
</tr>
</table>
<h4>带有 cellpadding:</h4>
<table border="1" 
cellpadding="10">
<tr>
<td>first</td>
<td>row</td>
</tr>   
<tr>
<td>second</td>
<td>row</td>
</tr>
</table>
</body>
</html>

HTML5学习手册

  • 单元格间距(cell spacing)
<html>

<body>

<h4>没有 cellspacing:</h4>
<table border="1">
<tr>
<td>first</td>
<td>row</td>
</tr>   
<tr>
<td>second</td>
<td>row</td>
</tr>
</table>
<h4>带有 cellspacing:</h4>
<table border="1" 
cellspacing="10">
<tr>
<td>first</td>
<td>row</td>
</tr>   
<tr>
<td>second</td>
<td>row</td>
</tr>
</table>
</body>
</html>

HTML5学习手册

  • 向表格添加背景颜色或背景图像
<h4>背景颜色:</h4>
<table border="1" 
bgcolor="red">
<h4>背景图像:</h4>
<table border="1" 
background="/i/eg_bg_07.gif">
  • 向表格单元添加背景颜色或者背景图像
<td bgcolor="red">first</td>
<td background="/i/eg_bg_07.gif">  second</td>
  • 在表格单元中排列内容
<html>

<body>

<table width="400" border="1">
<tr>
<th align="left">消费项目....</th>
<th align="right">一月</th>
<th align="right">二月</th>
</tr>
<tr>
<td align="left">衣服</td>
<td align="right">$241.10</td>
<td align="right">$50.20</td>
</tr>
<tr>
<td align="left">化妆品</td>
<td align="right">$30.00</td>
<td align="right">$44.45</td>
</tr>
<tr>
<td align="left">食物</td>
<td align="right">$730.40</td>
<td align="right">$650.00</td>
</tr>
<tr>
<th align="left">总计</th>
<th align="right">$1001.50</th>
<th align="right">$744.65</th>
</tr>
</table>
</body>
</html>

HTML5学习手册

  • 框架(frame)属性
<html>
<body>

<p><b>注释:</b>frame 属性无法在 internet explorer 中正确地显示。</p>
<p>table with frame="box":</p>
<table frame="box">
<tr>
<th>month</th>
<th>savings</th>
</tr>
<tr>
<td>january</td>
<td>$100</td>
</tr>
</table>
<p>table with frame="above":</p>
<table frame="above">
<tr>
<th>month</th>
<th>savings</th>
</tr>
<tr>
<td>january</td>
<td>$100</td>
</tr>
</table>
<p>table with frame="below":</p>
<table frame="below">
<tr>
<th>month</th>
<th>savings</th>
</tr>
<tr>
<td>january</td>
<td>$100</td>
</tr>
</table>
<p>table with frame="hsides":</p>
<table frame="hsides">
<tr>
<th>month</th>
<th>savings</th>
</tr>
<tr>
<td>january</td>
<td>$100</td>
</tr>
</table>
<p>table with frame="vsides":</p>
<table frame="vsides">
<tr>
<th>month</th>
<th>savings</th>
</tr>
<tr>
<td>january</td>
<td>$100</td>
</tr>
</table>
</body>
</html>

HTML5学习手册


表格标签

HTML5学习手册

html 列表


html 支持有序、无序和定义列表


无序列表


无序列表始于 <ul> 标签。每个列表项始于<li>

<ul>
<li>coffee</li>
<li>milk</li>
</ul>

列表项内部可以使用段落、换行符、图片、链接以及其他列表等等。

有序列表


有序列表始于<ol> 标签。每个列表项始于<li> 标签。

<ol>
<li>coffee</li>
<li>milk</li>
</ol>

列表项内部可以使用段落、换行符、图片、链接以及其他列表等等。

定义列表


自定义列表不仅仅是一列项目,而是项目及其注释的组合。
自定义列表以<dl> 标签开始。每个自定义列表项以<dt> 开始。每个自定义列表项的定义以<dd> 开始。

<dl>
<dt>coffee</dt>
<dd>black hot drink</dd>
<dt>milk</dt>
<dd>white cold drink</dd>
</dl>

定义列表的列表项内部可以使用段落、换行符、图片、链接以及其他列表等等。

列表标签

<ol>    定义有序列表。
<ul>    定义无序列表。
<li>    定义列表项。
<dl>    定义定义列表。
<dt>    定义定义项目。
<dd>    定义定义的描述。
<dir>     已废弃。使用 <ul> 代替它。
<menu>    已废弃。使用 <ul> 代替它。

<table border="1"><th>举例</th><tr><tr>

  • 不同类型的无序列表
<ul type="disc"> 实心黑点
<ul type="circle"> 圆圈
<ul type="square">实心方块
  • 不同类型的有序列表
<ol></ol>     数字列表
<ol type="a"> 字母列表
<ol type="a"> 小写字母
<ol type="i"> 罗马字母
<ol type="i"> 小写罗马
  • 嵌套
<h4>一个嵌套列表:</h4>
<ul>
<li>咖啡</li>
<li>茶
<ul>
<li>红茶</li>
<li>绿茶
<ul>
<li>中国茶</li>
<li>非洲茶</li>
</ul>
</li>
</ul>
</li>
<li>牛奶</li>
</ul>
  • 定义列表
<h2>一个定义列表:</h2>
<dl>
<dt>计算机</dt>
<dd>用来计算的仪器 ... ...</dd>
<dt>显示器</dt>
<dd>以视觉方式显示信息的装置 ... ...</dd>
</dl>

HTML5学习手册

html 块


html <div><span>

可以通过<div><span>将 html 元素组合起来。

html 块元素

大多数 html 元素被定义为块级元素或内联元素。
编者注:“块级元素”译为 block level element,“内联元素”译为 inline element。
块级元素在浏览器显示时,通常会以新行来开始(和结束)。
例子:<h1>, <p>, <ul>, <table>

html 内联元素


内联元素在显示时通常不会以新行开始。
例子:<b>, <td>, <a>, <img>

html <div> 元素


html <div> 元素是块级元素,它是可用于组合其他 html 元素的容器。
<div> 元素没有特定的含义。除此之外,由于它属于块级元素,浏览器会在其前后显示折行。
如果与 css 一同使用,<div> 元素可用于对大的内容块设置样式属性。
<div> 元素的另一个常见的用途是文档布局。它取代了使用表格定义布局的老式方法。使用 <table> 元素进行文档布局不是表格的正确用法。<table> 元素的作用是显示表格化的数据。

html <span> 元素


html <span> 元素是内联元素,可用作文本的容器。
<span> 元素也没有特定的含义。
当与 css 一同使用时,<span> 元素可用于为部分文本设置样式属性。

html 分组标签


标签       描述
<div>     定义文档中的分区或节(division/section)。
<span>    定义 span,用来组合文档中的行内元素。

html 布局


  • 网页布局对改善网站的外观非常重要。
  • 请慎重设计您的网页布局。

网站布局


  • 大多数网站会把内容安排到多个列中(就像杂志或报纸那样)。
  • 可以使用 <div> 或者<table> 元素来创建多列。css 用于对元素进行定位,或者为页面创建背景以及色彩丰富的外观。

    提示:即使可以使用 html 表格来创建漂亮的布局,但设计表格的目的是呈现表格化数据 - 表格不是布局工具!

html 布局 - 使用 <div> 元素


<!doctype html>
<html>
<head>
<style type="text/css">
div#container{width:500px}
div#header {background-color:#99bbbb;}
div#menu {background-color:#ffff99;height:200px;width:150px;float:left;}
div#content {background-color:#eeeeee;height:200px;width:350px;float:left;}
div#footer {background-color:#99bbbb;clear:both;text-align:center;}
h1 {margin-bottom:0;}
h2 {margin-bottom:0;font-size:18px;}
ul {margin:0;}
li {list-style:none;}
</style>
</head>

<body>

<div id="container">

<div id="header">
<h1>main title of web page</h1>
</div>

<div id="menu">
<h2>menu</h2>
<ul>
<li>html</li>
<li>css</li>
<li>javascript</li>
</ul>
</div>

<div id="content">content goes here</div>
<div id="footer">copyright w3school.com.cn</div>
</div>

</body>
</html>

HTML5学习手册

html 布局 - 使用表格


<!doctype html>
<html>
<body>

<table width="500" border="0">
<tr>
<td colspan="2" style="background-color:#99bbbb;">
<h1>main title of web page</h1>
</td>
</tr>

<tr valign="top">
<td style="background-color:#ffff99;width:100px;text-align:top;">
<b>menu</b><br />
html<br />
css<br />
javascript
</td>
<td style="background-color:#eeeeee;height:200px;width:400px;text-align:top;">
content goes here</td>
</tr>

<tr>
<td colspan="2" style="background-color:#99bbbb;text-align:center;">
copyright w3school.com.cn</td>
</tr>
</table>

</body>
</html>

HTML5学习手册

html 布局 - 有用的提示


提示:使用 css 最大的好处是,如果把 css 代码存放到外部样式表中,那么站点会更易于维护。通过编辑单一的文件,就可以改变所有页面的布局。
提示:由于创建高级的布局非常耗时,使用模板是一个快速的选项。通过搜索引擎可以找到很多免费的网站模板(您可以使用这些预先构建好的网站布局,并优化它们)。

html 布局标签

标签    描述
<div>    定义文档中的分区或节(division/section)。
<span>    定义 span,用来组合文档中的行内元素。

html 表单和输入


html 表单用于搜集不同类型的用户输入。


  • 表单是一个包含表单元素的区域。
  • 表单元素是允许用户在表单中(比如:文本域、下拉列表、单选框、复选框等等)输入信息的元素。
  • 表单使用表单标签(<form>)定义。
<form>
...
input 元素
...
</form>

输入


多数情况下被用到的表单标签是输入标签(<input>)。输入类型是由类型属性(type)定义的。大多数经常被用到的输入类型如下:

  • 文本域(text fields)
  • 键入字母、数字等内容时,就会用到文本域
<form>
first name: 
<input type="text" name="firstname" />
<br />
last name: 
<input type="text" name="lastname" />
</form>

注意,表单本身并不可见。同时,在大多数浏览器中,文本域的缺省宽度是20个字符。

  • 单选按钮(radio buttons)
  • 从若干给定的的选择中选取其一时,就会用到单选框
<form>
<input type="radio" name="sex" value="male" /> male
<br />
<input type="radio" name="sex" value="female" /> female
</form>

注意,只能从中选取其一。

  • 复选框(checkboxes)
  • 从若干给定的选择中选取一个或若干选项时,就会用到复选框
<form>
<input type="checkbox" name="bike" />
i have a bike
<br />
<input type="checkbox" name="car" />
i have a car
</form>
i have a bike
i have a car

表单的动作属性(action)和确认按钮


  • 当用户单击确认按钮时,表单的内容会被传送到另一个文件。
  • 表单的动作属性定义了目的文件的文件名。
  • 由动作属性定义的这个文件通常会对接收到的输入数据进行相关的处理。
<form name="input" action="html_form_action.asp" method="get">
username: 
<input type="text" name="user" />
<input type="submit" value="submit" />
</form>

假如您在上面的文本框内键入几个字母,然后点击确认按钮,那么输入数据会传送到 "html_form_action.asp" 的页面。该页面将显示出输入的结果。

举例


  • 文本域 (text field)
<html>
<body>
<form>
用户:
<input type="text" name="user">
<br />
密码:
<input type="password" name="password">
</form>
<p>
请注意,当您在密码域中键入字符时,浏览器将使用项目符号来代替这些字符。
</p>
</body>
</html>
  • 简单的下拉列表
<html>
<body>
<form>
<select name="cars">
<option value="volvo">volvo</option>
<option value="saab">saab</option>
<option value="fiat">fiat</option>
<option value="audi">audi</option>
</select>
</form>
</body>
</html>
<html>
<body>
<form>
<select name="cars">
<option value="volvo">volvo</option>
<option value="saab">saab</option>
<option value="fiat" selected="selected">fiat</option>
<option value="audi">audi</option>
</select>
</form>
</body>
</html>
  • 文本域(textarea)
<html>
<body>

<p>
this example cannot be edited
because our editor uses a textarea
for input,
and your browser does not allow
a textarea inside a textarea.
</p>

<textarea rows="10" cols="30">
the cat was playing in the garden.
  • 创建按钮
<input type="button" value="hello world!">

html 框架


通过使用框架,你可以在同一个浏览器窗口中显示不止一个页面。


框架

通过使用框架,你可以在同一个浏览器窗口中显示不止一个页面。每份html文档称为一个框架,并且每个框架都独立于其他的框架。
使用框架的坏处:

  • 开发人员必须同时跟踪更多的html文档
  • 很难打印整张页面

框架结构标签(

  • 框架结构标签()定义如何将窗口分割为框架
  • 每个 frameset 定义了一系列行或列
  • rows/columns 的值规定了每行或每列占据屏幕的面积

    编者注:frameset 标签也被某些文章和书籍译为框架集。


框架标签(frame)

frame 标签定义了放置在每个框架中的 html 文档。

在下面的这个例子中,我们设置了一个两列的框架集。第一列被设置为占据浏览器窗口的 25%。第二列被设置为占据浏览器窗口的 75%。html 文档 "frame_a.htm" 被置于第一个列中,而 html 文档 "frame_b.htm" 被置于第二个列中:

<frameset cols="25%,75%">
<frame src="frame_a.htm">
<frame src="frame_b.htm">
</frameset>

基本的注意事项 - 有用的提示:


假如一个框架有可见边框,用户可以拖动边框来改变它的大小。为了避免这种情况发生,可以在 标签中加入:noresize="noresize"。
为不支持框架的浏览器添加 <noframes>标签。

重要提示:不能将 <body></body> 标签与 <frameset></frameset>标签同时使用!不过,假如你添加包含一段文本的 <noframes>标签,就必须将这段文字嵌套于<body></body>标签内。(在下面的第一个实例中,可以查看它是如何实现的。)


实例


  • 如何使用 <noframes>标签(垂直)
<html>
<frameset cols="25%,50%,25%">
<frame src="/example/html/frame_a.html">
<frame src="/example/html/frame_b.html">
<frame src="/example/html/frame_c.html">
<noframes>
<body>您的浏览器无法处理框架!</body>
</noframes>

</frameset>

</html>

HTML5学习手册

  • 水平
<html>

<frameset rows="25%,50%,25%">

<frame src="/example/html/frame_a.html">
<frame src="/example/html/frame_b.html">
<frame src="/example/html/frame_c.html">

</frameset>

</html>

HTML5学习手册

  • 混合框架
<html>

<frameset rows="50%,50%">

<frame src="/example/html/frame_a.html">

<frameset cols="25%,75%">
<frame src="/example/html/frame_b.html">
<frame src="/example/html/frame_c.html">
</frameset>

</frameset>

</html>

HTML5学习手册

  • 含有 noresize="noresize" 属性的框架结构
<html>

<frameset cols="50%,*,25%">
<frame src="/example/html/frame_a.html" noresize="noresize" />
<frame src="/example/html/frame_b.html" />
<frame src="/example/html/frame_c.html" />
</frameset>

</html>

HTML5学习手册

  • 导航框架
<html>

<frameset cols="120,*">

<frame src="/example/html/html_contents.html">
<frame src="/example/html/frame_a.html" name="showframe">

</frameset>

</html>

HTML5学习手册

  • 内联框架
<html>

<body>

<iframe src="/i/eg_landscape.jpg"></iframe>
<p>一些老的浏览器不支持 iframe。</p>
<p>如果得不到支持,iframe 是不可见的。</p>
</body>
</html>

HTML5学习手册

  • 跳转至框架内的一个指定的节
  • 使用框架导航跳转至指定的节

html iframe


iframe 用于在网页内显示网页。


添加 iframe 的语法


<iframe src="url"></iframe>

url 指向隔离页面的位置。

iframe - 设置高度和宽度


height 和 width 属性用于规定 iframe 的高度和宽度。
属性值的默认单位是像素,但也可以用百分比来设定(比如 "80%")。

<iframe src="demo_iframe.htm" width="200" height="200"></iframe>

iframe - 删除边框


frameborder 属性规定是否显示 iframe 周围的边框。

设置属性值为 "0" 就可以移除边框:

<iframe src="demo_iframe.htm" frameborder="0"></iframe>

使用 iframe 作为链接的目标

iframe 可用作链接的目标(target)。

链接的 target 属性必须引用 iframe 的 name 属性:

<iframe src="demo_iframe.htm" name="iframe_a"></iframe>
<p><a href="http://www.w3school.com.cn" target="iframe_a">w3school.com.cn</a></p>

html 背景


背景(backgrounds)


<body> 拥有两个配置背景的标签。背景可以是颜色或者图像。

背景颜色(bgcolor)


背景颜色属性将背景设置为某种颜色。属性值可以是十六进制数、rgb 值或颜色名。

黑色
<body bgcolor="#000000">
<body bgcolor="rgb(0,0,0)">
<body bgcolor="black">

背景(background)


背景属性将背景设置为图像。属性值为图像的url。如果图像尺寸小于浏览器窗口,那么图像将在整个浏览器窗口进行复制

<body background="clouds.gif">
<body background="http://www.w3school.com.cn/clouds.gif">

url可以是相对地址,如第一行代码。也可以使绝对地址,如第二行代码。

提示:如果你打算使用背景图片,你需要紧记一下几点:

  • 背景图像是否增加了页面的加载时间。小贴士:图像文件不应超过 10k。
  • 背景图像是否与页面中的其他图象搭配良好。
  • 背景图像是否与页面中的文字颜色搭配良好。
  • 图像在页面中平铺后,看上去还可以吗?
  • 对文字的注意力被背景图像喧宾夺主了吗?

基本的注意事项 - 有用的提示:

<body> 标签中的背景颜色(bgcolor)、背景(background)和文本(text)属性在最新的 html 标准(html4 和 xhtml)中已被废弃。w3c 在他们的推荐标准中已删除这些属性。
应该使用层叠样式表(css)来定义 html 元素的布局和显示属性。

html 颜色


颜色由红色、绿色、蓝色混合而成。


颜色值

颜色由一个十六进制符号来定义,这个符号由红色、绿色和蓝色的值组成(rgb)。
每种颜色的最小值是0(十六进制:#00)。最大值是255(十六进制:#ff)。
这个表格给出了由三种颜色混合而成的具体效果:

HTML5学习手册

颜色名

大多数的浏览器都支持颜色名集合。

提示:仅仅有 16 种颜色名被 w3c 的 html4.0 标准所支持。它们是:aqua, black, blue, fuchsia, gray, green, lime, maroon, navy, olive, purple, red, silver, teal, white, yellow。

如果需要使用其它的颜色,需要使用十六进制的颜色值。


HTML5学习手册

web安全色

数年以前,当大多数计算机仅支持 256 种颜色的时候,一系列 216 种 web 安全色作为 web 标准被建议使用。其中的原因是,微软和 mac 操作系统使用了 40 种不同的保留的固定系统颜色(双方大约各使用 20 种)。
我们不确定如今这么做的意义有多大,因为越来越多的计算机有能力处理数百万种颜色,不过做选择还是你自己。

216 跨平台色

最初,216 跨平台 web 安全色被用来确保:当计算机使用 256 色调色板时,所有的计算机能够正确地显示所有的颜色。

HTML5学习手册

颜色名

HTML5学习手册

html 高级教程

html 文档类型


<!doctype> 声明帮助浏览器正确地显示网页。


<!doctype> 声明

web 世界中存在许多不同的文档。只有了解文档的类型,浏览器才能正确地显示文档。
html 也有多个不同的版本,只有完全明白页面中使用的确切 html 版本,浏览器才能完全正确地显示出 html 页面。这就是 <!doctype> 的用处。
<!doctype> 不是 html 标签。它为浏览器提供一项信息(声明),即 html 是用什么版本编写的。
提示:w3school 即将升级为最新的 html5 文档类型。

带有 html5 doctype 的 html 文档:

<!doctype html>
<html>
<head>
<title>title of the document</title>
</head>

<body>
the content of the document......
</body>

</html>

html 版本

从 web 诞生早期至今,已经发展出多个 html 版本:

html    1991
html+    1993
html 2.0    1995
html 3.2    1997
html 4.01    1999
xhtml 1.0    2000
html5    2012
xhtml5    2013

常用的声明

  • html5
<!doctype html>
  • html 4.01
<!doctype html public "-//w3c//dtd html 4.01 transitional//en"
"http://www.w3.org/tr/html4/loose.dtd">
  • xhtml 1.0
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en"
"http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">

html 头部元素


html <head> 元素


<head> 元素是所有头部元素的容器。<head> 内的元素可包含脚本,指示浏览器在何处可以找到样式表,提供元信息,等等。
以下标签都可以添加到 head 部分:<title>、<base>、<link>、<meta>、<script> 以及 <style>。

html <title> 元素

<title> 标签定义文档的标题

  • 定义浏览器工具栏中的标题
  • 提供页面被添加到收藏夹时显示的标题
  • 显示在搜索引擎结果中的页面标题
<!doctype html>
<html>
<head>
<title>title of the document</title>
</head>

<body>
the content of the document......
</body>

</html>

html <base>元素
标签为页面上的所有链接规定默认地址或默认目标(target):

<head>
<base href="http://www.w3school.com.cn/images/" />
<base target="_blank" />
</head>

html <link> 元素

<link> 标签定义文档与外部资源之间的关系。
<link> 标签最常用于连接样式表:
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css" />
</head>

html <style> 元素

<style> 标签用于为 html 文档定义样式信息。
您可以在 style 元素内规定 html 元素在浏览器中呈现的样式:
<head>
<style type="text/css">
body {background-color:yellow}
p {color:blue}
</style>
</head>

html <meta> 元素

元数据(metadata)是关于数据的信息。
<meta> 标签提供关于 html 文档的元数据。元数据不会显示在页面上,但是对于机器是可读的。
典型的情况是,meta 元素被用于规定页面的描述、关键词、文档的作者、最后修改时间以及其他元数据。
<meta> 标签始终位于 head 元素中。
元数据可用于浏览器(如何显示内容或重新加载页面),搜索引擎(关键词),或其他 web 服务。
针对搜索引擎的关键词
一些搜索引擎会利用 meta 元素的 name 和 content 属性来索引您的页面。
下面的 meta 元素定义页面的描述:
<meta name="description" content="free web tutorials on html, css, xml" />
下面的 meta 元素定义页面的关键词:
<meta name="keywords" content="html, css, xml" />
name 和 content 属性的作用是描述页面的内容。

html <script> 元素

<script> 标签用于定义客户端脚本,比如 javascript。
我们会在稍后的章节讲解 script 元素。

html 头部元素

标签       描述
<head>     定义关于文档的信息。
<title>    定义文档标题。
<base>     定义页面上所有链接的默认地址或默认目标。
<link>     定义文档与外部资源之间的关系。
<meta>     定义关于 html 文档的元数据。
<script>   定义客户端脚本。
<style>    定义文档的样式信息。

<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<meta http-equiv="refresh" content="5;url=http://www.w3school.com.cn" />
</head>

<body>
<p>
对不起。我们已经搬家了。您的 url 是 <a href="http://www.w3school.com.cn">http://www.w3school.com.cn</a>
</p>

<p>您将在 5 秒内被重定向到新的地址。</p>

<p>如果超过 5 秒后您仍然看到本消息,请点击上面的链接。</p>

</body>
</html>

html 脚本


javascript 使 html 页面具有更强的动态和交互性。。


html script 元素

<script> 标签用于定义客户端脚本,比如 javascript。
script 元素既可包含脚本语句,也可通过 src 属性指向外部脚本文件。
必需的 type 属性规定脚本的 mime 类型。
javascript 最常用于图片操作、表单验证以及内容动态更新。
下面的脚本会向浏览器输出“hello world!”:
<script type="text/javascript">
document.write("hello world!")
</script>

<noscript> 标签

<noscript> 标签提供无法使用脚本时的替代内容,比方在浏览器禁用脚本时,或浏览器不支持客户端脚本时。
noscript 元素可包含普通 html 页面的 body 元素中能够找到的所有元素。
只有在浏览器不支持脚本或者禁用脚本时,才会显示 noscript 元素中的内容:
<script type="text/javascript">
document.write("hello world!")
</script>
<noscript>your browser does not support javascript!</noscript>

如何应付老式的浏览器

如果浏览器压根没法识别 <script> 标签,那么 <script> 标签所包含的内容将以文本方式显示在页面上。为了避免这种情况发生,你应该将脚本隐藏在注释标签当中。那些老的浏览器(无法识别 <script> 标签的浏览器)将忽略这些注释,所以不会将标签的内容显示到页面上。而那些新的浏览器将读懂这些脚本并执行它们,即使代码被嵌套在注释标签内。
实例
javascript:
<script type="text/javascript">
<!--
document.write("hello world!")
//-->
</script>
vbscript:
<script type="text/vbscript">
<!--
document.write("hello world!")
'-->
</script>
标签          描述
<script>      定义客户端脚本。
<noscript>    为不支持客户端脚本的浏览器定义替代内容。

  • 插入一段脚本
<html>

<body>

<script type="text/javascript">
document.write("<h1>hello world!</h1>")
</script> 

</body>

</html>
  • 使用 <noscript> 标签(如何应对不支持脚本或禁用脚本的浏览器)
<!doctype html>
<html>
<body>

<script type="text/javascript">
document.write("hello world!")
</script>
<noscript>sorry, your browser does not support javascript!</noscript>

<p>不支持 javascript 的浏览器将显示 noscript 元素中的文本。</p>

</body>
</html>

html 字符实体


html 实体


  • 在 html 中,某些字符是预留的。
  • 在 html 中不能使用小于号(<)和大于号(>),这是因为浏览器会误认为它们是标签。
  • 如果希望正确地显示预留字符,我们必须在 html 源代码中使用字符实体(character entities)。
    字符实体类似这样:
&entity_name;

或者

&#entity_number;

如需显示小于号,我们必须这样写:&lt; 或 &#60;

提示:使用实体名而不是数字的好处是,名称易于记忆。不过坏处是,浏览器也许并不支持所有实体名称(对实体数字的支持却很好)。


不间断空格(non-breaking space)

html 中的常用字符实体是不间断空格(&nbsp;)。
浏览器总是会截短 html 页面中的空格。如果您在文本中写 10 个空格,在显示该页面之前,浏览器会删除它们中的 9 个。如需在页面中增加空格的数量,您需要使用 &nbsp; 字符实体。

html 实例示例

<!doctype html>
<html>
<body>

<h2>字符实体</h2>
<p>&x;</p>
<p>用实体数字(比如"#174")或者实体名称(比如 "pound")替代 "x",然后查看结果。</p>
</body>
</html>

html 中有用的字符实体

注释:实体名称对大小写敏感!

显示结果 描述 实体名称 实体编号
空格    &nbsp;    &#160;
<     小于号  &lt;    &#60;
>     大于号  &gt;    &#62;
&     和号    &amp;    &#38;
"     引号    &quot;    &#34;
'     撇号    &apos; (ie不支持)    &#39;
¢     分     &cent;    &#162;
£     镑      &pound;    &#163;
¥     日圆    &yen;    &#165;
€     欧元    &euro;    &#8364;
§     小节    &sect;    &#167;
©     版权    &copy;    &#169;
®    注册商标  &reg;    &#174;
™     商标    &trade;    &#8482;
×     乘号    &times;    &#215;
÷     除号    &divide;    &#247;

html 实体符号参考手册

html 统一资源定位器&编码


url - uniform resource locator


scheme://host.domain:port/path/filename

遵守以下的语法规则

解释:

  • scheme - 定义因特网服务的类型。最常见的类型是 http
  • host - 定义域主机(http 的默认主机是 www)
  • domain - 定义因特网域名,比如 w3school.com.cn
    :port - 定义主机上的端口号(http 的默认端口号是 80)
  • path - 定义服务器上的路径(如果省略,则文档必须位于网站的根目录中)。
  • filename - 定义文档/资源的名称

以下是其中一些最流行的 scheme:

scheme   访问                用于...
http     超文本传输协议         以 http:// 开头的普通网页。不加密。
https    安全超文本传输协议     安全网页。加密所有信息交换。
ftp      文件传输协议           用于将文件下载或上传至网站。
file                          您计算机上的文件。

url 编码

  • url 只能使用 ascii 字符集来通过因特网进行发送。
  • 由于 url 常常会包含 ascii 集合之外的字符,url 必须转换为有效的 ascii 格式。
  • url 编码使用 "%" 其后跟随两位的十六进制数来替换非 ascii 字符。
  • url 不能包含空格。url 编码通常使用 + 来替换空格。

html web 服务器


如果希望向世界发布您的网站,那么您必须把它存放在 web 服务器上。


托管自己的网站

在自己的服务器上托管网站始终是一个选项。有几点需要考虑:

  • 硬件支出
    如果要运行“真正”的网站,您不得不购买强大的服务器硬件。不要指望低价的 pc 能够应付这些工作。您还需要稳定的(一天 24 小时)高速连接。
  • 软件支出
    请记住,服务器授权通常比客户端授权更昂贵。同时请注意,服务器授权也许有用户数量限制。
  • 人工费
    不要指望低廉的人工费用。您必须安装自己的硬件和软件。您同时要处理漏洞和病毒,以确保您的服务器时刻正常地运行于一个“任何事都可能发生”的环境中。

使用因特网服务提供商(isp)

从 isp 租用服务器也很常见。
大多数小公司会把网站存放到由 isp 提供的服务器上。其优势有以下几点:

  • 连接速度
    大多数 isp 都拥有连接因特网的高速连接。
  • 强大的硬件
    isp 的 web 服务器通常强大到能够由若干网站分享资源。您还要看一下 isp 是否提供高效的负载平衡,以及必要的备份服务器。
  • 安全性和可靠性
    isp 是网站托管方面的专家。他们应该提供 99% 以上的在线时间,最新的软件补丁,以及最好的病毒防护。

选择 isp 时的注意事项

  • 24 小时支持
    确保 isp 提供 24 小时支持。不要使自己置于无法解决严重问题的尴尬境地,同时还必须等待第二个工作日。如果您不希望支付长途电话费,那么免费电话服务也是必要的。
  • 每日备份
    确保 isp 会执行每日备份的例行工作,否则您有可能损失有价值的数据。
  • 流量
    研究一下 isp 的流量限制。如果出现由于网站受欢迎而激增的不可预期的访问量,那么您要确保不会因此支付额外费用。
  • 带宽或内容限制
    研究一下 isp 的带宽和内容限制。如果您计划发布图片或播出视频或音频,请确保您有此权限。
  • e-mail 功能
    请确保 isp 支持您需要的 e-mail 功能。
  • 数据库访问
    如果您计划使用网站数据库中的数据,那么请确保您的 isp 支持您需要的数据库访问。

选取一家 isp 之前,请务必阅读 w3school 的 web 主机教程

html 媒体

html 媒体


web 上的多媒体指的是音效、音乐、视频和动画。现代网络浏览器已支持很多多媒体格式。


什么是多媒体?

多媒体来自多种不同的格式。它可以是您听到或看到的任何内容,文字、图片、音乐、音效、录音、电影、动画等等。

在因特网上,您会经常发现嵌入网页中的多媒体元素,现代浏览器已支持多种多媒体格式。

在本教程中,您将了解到不同的多媒体格式,以及如何在您的网页中使用它们。


浏览器支持

第一款因特网浏览器只支持文本,而且即使是对文本的支持也仅限于单一字体和单一颜色。随后诞生了支持颜色、字体和文本样式的浏览器,图片支持也被加入。

不同的浏览器以不同的方式处理对音效、动画和视频的支持。某些元素能够以内联的方式处理,而某些则需要额外的插件。
您将在下面的章节学习更多有关插件的知识。


多媒体格式

多媒体元素(比如视频和音频)存储于媒体文件中。

确定媒体类型的最常用的方法是查看文件扩展名。当浏览器得到文件扩展名 .htm 或 .html 时,它会假定该文件是 html 页面。.xml 扩展名指示 xml 文件,而 .css 扩展名指示样式表。图片格式则通过 .gif 或 .jpg 来识别。

多媒体元素元素也拥有带有不同扩展名的文件格式,比如 .swf、.wmv、.mp3 以及 .mp4。


视频格式

mp4 格式是一种新的即将普及的因特网视频格式。html5 、flash 播放器以及优酷等视频网站均支持它。

HTML5学习手册


声音格式


HTML5学习手册

使用哪种格式?

wave 是因特网上最受欢迎的无压缩声音格式,所有流行的浏览器都支持它。如果您需要未经压缩的声音(音乐或演讲),那么您应该使用 wave 格式。
mp3 是最新的压缩录制音乐格式。mp3 这个术语已经成为数字音乐的代名词。如果您的网址从事录制音乐,那么 mp3 是一个选项。


html object 元素


<object> 的作用是支持 html 助手(插件)。


html 助手(插件)

辅助应用程序(helper application)是可由浏览器启动的程序。辅助应用程序也称为插件。

辅助程序可用于播放音频和视频(以及其他)。辅助程序是使用 <object> 标签来加载的。

使用辅助程序播放视频和音频的一个优势是,您能够允许用户来控制部分或全部播放设置。

大多数辅助应用程序允许对音量设置和播放功能(比如后退、暂停、停止和播放)的手工(或程序的)控制。

在 html 中播放视频的最好方式?


如需了解在 html 中包含音视频的最好方法,请参阅下一章节。


使用 quicktime 来播放 wave 音频

<object width="420" height="360"
classid="clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b"
codebase="http://www.apple.com/qtactivex/qtplugin.cab">
<param name="src" value="bird.wav" />
<param name="controller" value="true" />
</object>

使用 quicktime 来播放 mp4 视频

<object width="420" height="360"
classid="clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b"
codebase="http://www.apple.com/qtactivex/qtplugin.cab">
<param name="src" value="movie.mp4" />
<param name="controller" value="true" />
</object>

使用 flash 来播放 swf 视频

<object width="400" height="40"
classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
codebase="http://fpdownload.macromedia.com/
pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0">
<param name="src" value="bookmark.swf">
<embed src="bookmark.swf" width="400" height="40"></embed>
</object>

使用 windows media player 来播放 wmv 影片

下面的例子展示用于播放 windows 媒体文件的推荐代码:

<object width="100%" height="100%"
type="video/x-ms-asf" url="3d.wmv" data="3d.wmv"
classid="clsi
d:6bf52a52-394a-11d3-b153-00c04f79faa6">
<param name="url" value="3d.wmv">
<param name="filename" value="3d.wmv">
<param name="autostart" value="1">
<param name="uimode" value="full" />
<param name="autosize" value="1">
<param name="playcount" value="1">
<embed type="application/x-mplayer2" src="3d.wmv" width="100%"
height="100%" autostart="true" showcontrols="true" 
pluginspage="http://www.microsoft.com/windows/mediaplayer/"></embed>
</object>

html 音频


在 html 中播放声音的方法有很多种。


问题以及解决方法

在 html 中播放音频并不容易!

您需要谙熟大量技巧,以确保您的音频文件在所有浏览器中(internet explorer, chrome, firefox, safari, opera)和所有硬件上(pc, mac , ipad, iphone)都能够播放。

使用插件

浏览器插件是一种扩展浏览器标准功能的小型计算机程序。

插件有很多用途:播放音乐、显示地图、验证银行账号,控制输入等等。

可使用 <object> 或 <embed> 标签来将插件添加到 html 页面。

这些标签定义资源(通常非 html 资源)的容器,根据类型,它们即会由浏览器显示,也会由外部插件显示。

使用 <embed>元素

<embed> 标签定义外部(非 html)内容的容器。(这是一个 html5 标签,在 html4 中是非法的,但是所有浏览器中都有效)。
下面的代码片段能够显示嵌入网页中的 mp3 文件:
<embed height="100" width="100" src="song.mp3" />

问题:

  • 标签在 html 4 中是无效的。页面无法通过 html 4 验证。
  • 不同的浏览器对音频格式的支持也不同。
  • 如果浏览器不支持该文件格式,没有插件的话就无法播放该音频。
  • 如果用户的计算机未安装插件,无法播放音频。
  • 如果把该文件转换为其他格式,仍然无法在所有浏览器中播放。

    注释:使用 <!doctype html>(html5) 解决验证问题。


使用 <object> 元素

<object tag> 标签也可以定义外部(非 html)内容的容器。
下面的代码片段能够显示嵌入网页中的 mp3 文件:

<object height="100" width="100" data="song.mp3">

问题:

  • 不同的浏览器对音频格式的支持也不同。
  • 如果浏览器不支持该文件格式,没有插件的话就无法播放该音频。
  • 如果用户的计算机未安装插件,无法播放音频。
  • 如果把该文件转换为其他格式,仍然无法在所有浏览器中播放。

使用 html5 <audio> 元素

<audio> 元素是一个 html5 元素,在 html 4 中是非法的,但在所有浏览器中都有效。

<audio controls="controls">
<source src="http://www.w3school.com.cn/i/song.mp3" type="audio/mp3" />
<source src="song.ogg" type="audio/ogg" />
your browser does not support this audio format.
</audio>

上面的例子使用了一个 mp3 文件,这样它在 internet explorer、chrome 以及 safari 中是有效的。

为了使这段音频在 firefox 和 opera 中同样有效,添加了一个 ogg 类型的文件。如果失败,会显示错误消息。

问题:

  • <audio> 标签在 html 4 中是无效的。您的页面无法通过 html 4 验证。
  • 您必须把音频文件转换为不同的格式。
  • <audio> 元素在老式浏览器中不起作用。
    注释:使用 <!doctype html> (html5) 解决验证问题。

最好的 html 解决方法

<audio controls="controls" height="100" width="100">
<source src="song.mp3" type="audio/mp3" />
<source src="song.ogg" type="audio/ogg" />
<embed height="100" width="100" src="song.mp3" />
</audio>

上面的例子使用了两个不同的音频格式。html5 <audio>元素会尝试以 mp3 或 ogg 来播放音频。如果失败,代码将回退尝试<embed> 元素。

问题:

  • 您必须把音频转换为不同的格式。
  • <audio>元素无法通过 html 4 和 xhtml 验证。
  • 元素无法通过 html 4 和 xhtml 验证。
  • 元素无法回退来显示错误消息。

注释:使用 <!doctype html>(html5) 解决验证问题。


向网站添加音频的最简单方法

向网页添加音频的最简单的方法是什么?

雅虎的媒体播放器绝对算其中之一。
使用雅虎媒体播放器是一个不同的途径。您只需简单地让雅虎来完成歌曲播放的工作就好了。
它能播放 mp3 以及一系列其他格式。通过一行简单的代码,您就可以把它添加到网页中,轻松地将 html 页面转变为专业的播放列表。

雅虎媒体播放器

<a href="song.mp3">play sound</a>

<script type="text/javascript" src="http://mediaplayer.yahoo.com/js">
</script>
亲自试一试
使用雅虎播放器是免费的。如需使用它,您需要把这段 javascript 插入网页底部:
<script type="text/javascript" src="http://mediaplayer.yahoo.com/js"></script>
然后只需简单地把 mp3 文件链接到您的 html 中,javascript 会自动地为每首歌创建播放按钮:
<a href="song1.mp3">play song 1</a>
<a href="song2.mp3">play song 2</a>

雅虎媒体播放器为您的用户提供的是一个小型的播放按钮,而不是完整的播放器。不过,当您点击该按钮,会弹出完整的播放器。

请注意,这个播放器始终停靠在窗框底部。只需点击它,就可将其滑出。


使用超链接

如果网页包含指向媒体文件的超链接,大多数浏览器会使用“辅助应用程序”来播放文件。

以下代码片段显示指向 mp3 文件的链接。如果用户点击该链接,浏览器会启动“辅助应用程序”来播放该文件:

<a href="song.mp3">play the sound</a>

内联的声音

当您在网页中包含声音,或者作为网页的组成部分时,它被称为内联声音。
如果您打算在 web 应用程序中使用内联声音,您需要意识到很多人都觉得内联声音令人恼火。同时请注意,用户可能已经关闭了浏览器中的内联声音选项。

我们最好的建议是只在用户希望听到内联声音的地方包含它们。一个正面的例子是,在用户需要听到录音并点击某个链接时,会打开页面然后播放录音。


html 4.01 多媒体标签

标签        描述
<applet>    不赞成。定义内嵌 applet。
<embed>     html4 中不赞成,html5 中允许。定义内嵌对象。
<object>    定义内嵌对象。
<param>     定义对象的参数。

html 5 多媒体标签

标签       描述
<audio>    标签定义声音,比如音乐或其他音频流。
<embed>    标签定义嵌入的内容,比如插件。

html 视频


在 html 中播放视频的方法有很多种。


<video width="320" height="240" controls="controls">
<source src="movie.mp4" type="video/mp4" />
<source src="movie.ogg" type="video/ogg" />
<source src="movie.webm" type="video/webm" />
<object data="movie.mp4" width="320" height="240">
<embed src="movie.swf" width="320" height="240" />
</object>
</video>

问题以及解决方法

在 html 中播放视频并不容易!
您需要谙熟大量技巧,以确保您的视频文件在所有浏览器中(internet explorer, chrome, firefox, safari, opera)和所有硬件上(pc, mac , ipad, iphone)都能够播放。

使用 <embed> 标签

标签的作用是在 html 页面中嵌入多媒体元素。

下面的 html 代码显示嵌入网页的 flash 视频:

<embed src="movie.swf" height="200" width="200"/>

问题

html4 无法识别 <embed> 标签。您的页面无法通过验证。
如果浏览器不支持 flash,那么视频将无法播放
ipad 和 iphone 不能显示 flash 视频。
如果您将视频转换为其他格式,那么它仍然不能在所有浏览器中播放。

使用 <object> 标签

标签的作用是在 html 页面中嵌入多媒体元素。
下面的 html 片段显示嵌入网页的一段 flash 视频:

<object data="movie.swf" height="200" width="200"/>

问题

如果浏览器不支持 flash,将无法播放视频。
ipad 和 iphone 不能显示 flash 视频。
如果您将视频转换为其他格式,那么它仍然不能在所有浏览器中播放。

使用 <video>标签

<video> 是 html 5 中的新标签。
<video> 标签的作用是在 html 页面中嵌入视频元素。
以下 html 片段会显示一段嵌入网页的 ogg、mp4 或 webm 格式的视频:
<video width="320" height="240" controls="controls">
<source src="movie.mp4" type="video/mp4" />
<source src="movie.ogg" type="video/ogg" />
<source src="movie.webm" type="video/webm" />
your browser does not support the video tag.
</video>
您必须把视频转换为很多不同的格式。
<video> 元素在老式浏览器中无效。
<video> 元素无法通过 html 4 和 xhtml 验证。

最好的 html 解决方法

html 5 + <object> + <embed>
<video width="320" height="240" controls="controls">
<source src="movie.mp4" type="video/mp4" />
<source src="movie.ogg" type="video/ogg" />
<source src="movie.webm" type="video/webm" />
<object data="movie.mp4" width="320" height="240">
<embed src="movie.swf" width="320" height="240" />
</object>
</video>
上例中使用了 4 中不同的视频格式。html 5 <video> 元素会尝试播放以 mp4、ogg 或 webm 格式中的一种来播放视频。如果均失败,则回退到 <embed> 元素。

问题

您必须把视频转换为很多不同的格式
<video> 元素无法通过 html 4 和 xhtml 验证。
<embed> 元素无法通过 html 4 和 xhtml 验证。

注释:使用 <!doctype html> (html5) 解决验证问题。


优酷解决方案

在 html 中显示视频的最简单的方法是使用优酷等视频网站。
如果您希望在网页中播放视频,那么您可以把视频上传到优酷等视频网站,然后在您的网页中插入 html 代码即可播放视频:```
​```html
<embed src="http://player.youku.com/player.php/sid/xmzi2ntc4ntmy/v.swf" 
width="480" height="400" 
type="application/x-shockwave-flash">
</embed>

使用超链接

如果网页包含指向媒体文件的超链接,大多数浏览器会使用“辅助应用程序”来播放文件。
以下代码片段显示指向 avi 文件的链接。如果用户点击该链接,浏览器会启动“辅助应用程序”,比如 windows media player 来播放这个 avi 文件:
<a href="movie.swf">play a video file</a>

关于内联视频的一段注释

当视频被包含在网页中时,它被称为内联视频。
如果您打算在 web 应用程序中使用内联视频,您需要意识到很多人都觉得内联视频令人恼火。
同时请注意,用户可能已经关闭了浏览器中的内联视频选项。
我们最好的建议是只在用户希望看到内联视频的地方包含它们。一个正面的例子是,在用户需要看到视频并点击某个链接时,会打开页面然后播放视频。

html 4.01 多媒体标签

标签         描述
<applet>     不赞成。定义内嵌 applet。
<embed>      不赞成。定义内嵌对象。(html5 中允许)
<object>     定义内嵌对象。
<param>      定义对象的参数。

html 5 多媒体标签

标签       描述
<video>    标签定义声音,比如音乐或其他音频流。
<embed>    标签定义嵌入的内容,比如插件。

html 5 教程

html5 简介


html5 是下一代的 html。


什么是 html5?

  • html5 将成为 html、xhtml 以及 html dom 的新标准。
  • html 的上一个版本诞生于 1999 年。自从那以后,web 世界已经经历了巨变。
  • html5 仍处于完善之中。然而,大部分现代浏览器已经具备了某些 html5 支持。

html5 是如何起步的?

  • html5 是 w3c 与 whatwg 合作的结果。
  • 编者注:w3c 指 world wide web consortium,万维网联盟。
  • 编者注:whatwg 指 web hypertext application technology working group。
  • whatwg 致力于 web 表单和应用程序,而 w3c 专注于 xhtml 2.0。在 2006 年,双方决定进行合作,来创建一个新版本的 html。
  • 为 html5 建立的一些规则:
  • 新特性应该基于 html、css、dom 以及 javascript。
  • 减少对外部插件的需求(比如 flash)
  • 更优秀的错误处理
  • 更多取代脚本的标记
  • html5 应该独立于设备
  • 开发进程应对公众透明

新特性

  • html5 中的一些有趣的新特性:
  • 用于绘画的 canvas 元素
  • 用于媒介回放的 video 和 audio 元素

  • 对本地离线存储的更好的支持

  • 新的特殊内容元素,比如 article、footer、header、nav、section
    新的表单控件,比如 calendar、date、time、email、url、search


浏览器支持

  • 最新版本的 safari、chrome、firefox 以及 opera 支持某些 html5 特性。internet explorer 9 将支持某些 html5 特性。

html5 视频


许多时髦的网站都提供视频。html5 提供了展示视频的标准。


web 上的视频

直到现在,仍然不存在一项旨在网页上显示视频的标准。
今天,大多数视频是通过插件(比如 flash)来显示的。然而,并非所有浏览器都拥有同样的插件。
html5 规定了一种通过 video 元素来包含视频的标准方法。

视频格式

当前,video 元素支持三种视频格式:
HTML5学习手册

ogg = 带有 theora 视频编码和 vorbis 音频编码的 ogg 文件
mpeg4 = 带有 h.264 视频编码和 aac 音频编码的 mpeg 4 文件
webm = 带有 vp8 视频编码和 vorbis 音频编码的 webm 文件


如何工作

如需在 html5 中显示视频,您所有需要的是:

<video src="http://www.w3school.com.cn/i/movie.mp4" controls="controls">
</video>
control 属性供添加播放、暂停和音量控件。
包含宽度和高度属性也是不错的主意。
<video> 与 </video> 之间插入的内容是供不支持 video 元素的浏览器显示的:
<video src="http://www.w3school.com.cn/i/movie.mp4" width="320" height="240" controls="controls">
your browser does not support the video tag.
</video>
上面的例子使用一个 ogg 文件,适用于firefox、opera 以及 chrome 浏览器。
要确保适用于 safari 浏览器,视频文件必须是 mpeg4 类型。
video 元素允许多个 source 元素。source 元素可以链接不同的视频文件。浏览器将使用第一个可识别的格式:
<video width="320" height="240" controls="controls">
<source src="movie.ogg" type="video/ogg">
<source src="movie.mp4" type="video/mp4">
your browser does not support the video tag.
</video>

internet explorer

internet explorer 8 不支持 video 元素。在 ie 9 中,将提供对使用 mpeg4 的 video 元素的支持。


<video> 标签的属性

HTML5学习手册

html 5 video + dom


html5 <video> - 使用 dom 进行控制
html5 <video> 元素同样拥有方法、属性和事件。
其中的方法用于播放、暂停以及加载等。其中的属性(比如时长、音量等)可以被读取或设置。其中的 dom 事件能够通知您,比方说,<video> 元素开始播放、已暂停,已停止,等等。
下例中简单的方法,向我们演示了如何使用 <video> 元素,读取并设置属性,以及如何调用方法。
<!doctype html> 
<html> 
<body> 

<div style="text-align:center;">
<button onclick="playpause()">播放/暂停</button> 
<button onclick="makebig()">大</button>
<button onclick="makenormal()">中</button>
<button onclick="makesmall()">小</button>
<br /> 
<video id="video1" width="420" style="margin-top:15px;">
<source src="/example/html5/mov_bbb.mp4" type="video/mp4" />
<source src="/example/html5/mov_bbb.ogg" type="video/ogg" />
your browser does not support html5 video.
</video>
</div> 

<script type="text/javascript">
var myvideo=document.getelementbyid("video1");

function playpause()
{ 
if (myvideo.paused) 
myvideo.play(); 
else 
myvideo.pause(); 
} 

function makebig()
{ 
myvideo.width=560; 
} 

function makesmall()
{ 
myvideo.width=320; 
} 

function makenormal()
{ 
myvideo.width=420; 
} 
</script> 

</body> 
</html>

html5 <video> - 方法、属性以及事件

下面列出了大多数浏览器支持的视频方法、属性和事件:

方法         属性          事件
play()         currentsrc    play
pause()        currenttime   pause
load()         videowidth    progress
canplaytype    videoheight   error
duration      timeupdate
ended         ended
error         abort
paused        empty
muted         emptied
seeking       waiting
volume        loadedmetadata
height     
width     

注释:在所有属性中,只有 videowidth 和 videoheight 属性是立即可用的。在视频的元数据已加载后,其他属性才可用。

html 5 音频


web 上的音频

直到现在,仍然不存在一项旨在网页上播放音频的标准。
今天,大多数音频是通过插件(比如 flash)来播放的。然而,并非所有浏览器都拥有同样的插件。
html5 规定了一种通过 audio 元素来包含音频的标准方法。
audio 元素能够播放声音文件或者音频流。


音频格式

当前,audio 元素支持三种音频格式:
HTML5学习手册


如何工作

如需在 html5 中播放音频,您所有需要的是:

<audio src="song.ogg" controls="controls">
</audio>
control 属性供添加播放、暂停和音量控件。
<audio> 与 </audio> 之间插入的内容是供不支持 audio 元素的浏览器显示的:```
​```html
<audio src="song.ogg" controls="controls">
your browser does not support the audio tag.
</audio>
上面的例子使用一个 ogg 文件,适用于firefox、opera 以及 chrome 浏览器。
要确保适用于 safari 浏览器,音频文件必须是 mp3 或 wav 类型。
audio 元素允许多个 source 元素。source 元素可以链接不同的音频文件。浏览器将使用第一个可识别的格式:
<audio controls="controls">
<source src="song.ogg" type="audio/ogg">
<source src="song.mp3" type="audio/mpeg">
your browser does not support the audio tag.
</audio>

internet explorer

internet explorer 8 不支持 audio 元素。在 ie 9 中,将提供对 audio 元素的支持。


<audio>标签的属性

HTML5学习手册

html 拖放


拖放(drag 和 drop)是 html5 标准的组成部分。


拖放

  • 拖放是一种常见的特性,即抓取对象以后拖到另一个位置。
  • 在 html5 中,拖放是标准的一部分,任何元素都能够拖放。

浏览器支持

internet explorer 9、firefox、opera 12、chrome 以及 safari 5 支持拖放。
注释:在 safari 5.1.2 中不支持拖放。


html5 拖放实例

<!doctype html>
<html>
<head>
<script type="text/javascript">
function allowdrop(ev)
{
ev.preventdefault();
}
function drag(ev)
{
ev.datatransfer.setdata("text",ev.target.id);
}
function drop(ev)
{
ev.preventdefault();
var data=ev.datatransfer.getdata("text");
ev.target.appendchild(document.getelementbyid(data));
}
</script>
</head>
<body>
<div id="div1" ondrop="drop(event)"
ondragover="allowdrop(event)">
</div>
<img id="drag1" src="img_logo.gif" draggable="true"
ondragstart="drag(event)" width="336" height="69" />
</body>
</html>

它看上去也许有些复杂,不过我们可以分别研究拖放事件的不同部分。


** 设置元素为可拖放**

1.首先,为了使元素可拖动,把 draggable 属性设置为 true :

<img draggable="true" />

拖动什么 - ondragstart 和 setdata()

2.然后,规定当元素被拖动时,会发生什么。

在上面的例子中,ondragstart 属性调用了一个函数,drag(event),它规定了被拖动的数据。
datatransfer.setdata() 方法设置被拖数据的数据类型和值:

function drag(ev)
{
ev.datatransfer.setdata("text",ev.target.id);
}

在这个例子中,数据类型是 "text",值是可拖动元素的 id ("drag1")。

放到何处 - ondragover

3.ondragover 事件规定在何处放置被拖动的数据。

默认地,无法将数据/元素放置到其他元素中。如果需要设置允许放置,我们必须阻止对元素的默认处理方式。
这要通过调用 ondragover 事件的 event.preventdefault() 方法:

event.preventdefault()```

**进行放置 - ondrop**

4.当放置被拖数据时,会发生 drop 事件。
> 在上面的例子中,ondrop 属性调用了一个函数,drop(event):

​```html
function drop(ev)
{
ev.preventdefault();
var data=ev.datatransfer.getdata("text");
ev.target.appendchild(document.getelementbyid(data));
}

代码解释:

  • 调用 preventdefault() 来避免浏览器对数据的默认处理(drop 事件的默认行为是以链接形式打开)
  • 通过 datatransfer.getdata("text") 方法获得被拖的数据。该方法将返回在 setdata() 方法中设置为相同类型的任何数据。
  • 被拖数据是被拖元素的 id ("drag1")
  • 把被拖元素追加到放置元素(目标元素)中

来回拖放图片

<!doctype html>
<html>
<head>
<style type="text/css">
#div1, #div2
{float:left; width:100px; height:35px; margin:10px;padding:10px;border:1px solid #aaaaaa;}
</style>
<script type="text/javascript">
function allowdrop(ev)
{
ev.preventdefault();
}

function drag(ev)
{
ev.datatransfer.setdata("text",ev.target.id);
}

function drop(ev)
{
ev.preventdefault();
var data=ev.datatransfer.getdata("text");
ev.target.appendchild(document.getelementbyid(data));
}
</script>
</head>
<body>

<div id="div1" ondrop="drop(event)" ondragover="allowdrop(event)">
<img src="http://pic.qqtn.com/file/2012/2012-12/2012122114312932657.gif" draggable="true" ondragstart="drag(evnt)" id="drag1" />
</div>
<div id="div2" ondrop="drop(event)" ondragover="allowdrop(event)"></div>
</body>
</html>

html5 画布


canvas 元素用于在网页上绘制图形。


什么是 canvas?

  • html5 的 canvas 元素使用 javascript 在网页上绘制图像。
  • 画布是一个矩形区域,您可以控制其每一像素。
  • canvas 拥有多种绘制路径、矩形、圆形、字符以及添加图像的方法。

创建 canvas 元素

  • 向 html5 页面添加 canvas 元素。
  • 规定元素的 id、宽度和高度:
<canvas id="mycanvas" width="200" height="100"></canvas>

通过 javascript 来绘制

  • canvas 元素本身是没有绘图能力的。所有的绘制工作必须在 javascript 内部完成:
<script type="text/javascript">

1.javascript 使用 id 来寻找 canvas 元素:
var c=document.getelementbyid("mycanvas");

2.然后,创建 context 对象:
2.1 getcontext("2d") 对象是内建的 html5 对象,拥有多种绘制路径、矩形、圆形、字符以及添加图像的方法
var cxt=c.getcontext("2d");

3.下面的两行代码绘制一个红色的矩形:
3.1 fillstyle 方法将其染成红色,fillrect 方法规定了形状、位置和尺寸。
cxt.fillstyle="#ff0000";
cxt.fillrect(0,0,150,75);

</script>
<script type="text/javascript">
var c=document.getelementbyid("mycanvas");
var cxt=c.getcontext("2d");
cxt.fillstyle="#ff0000";
cxt.fillrect(0,0,150,75);
</script>

理解坐标

  • 上面的 fillrect 方法拥有参数 (0,0,150,75)。
  • 意思是:在画布上绘制 150x75 的矩形,从左上角开始 (0,0)。
  • 画布的 x 和 y 坐标用于在画布上对绘画进行定位。

把鼠标悬停在下面的矩形上可以看到坐标

<!doctype html>
<html>
<head>
<style type="text/css"> 
body
{
font-size:70%;
font-family:verdana,helvetica,arial,sans-serif;
}
</style>

<script type="text/javascript"> 
function cnvs_getcoordinates(e)
{
x=e.clientx;
y=e.clienty;
document.getelementbyid("xycoordinates").innerhtml="coordinates: (" + x + "," + y + ")";
}

function cnvs_clearcoordinates()
{
document.getelementbyid("xycoordinates").innerhtml="";
}
</script>
</head>

<body style="margin:0px;">

<p>把鼠标悬停在下面的矩形上可以看到坐标:</p>
<div id="coordiv" style="float:left;width:199px;height:99px;border:1px solid #c3c3c3" onmousemove="cnvs_getcoordinates(event)" onmouseout="cnvs_clearcoordinates()"></div>
<br />
<br />
<br />
<div id="xycoordinates"></div>
</body>
</html>

实线

<!doctype html>
<html>
<body>

<canvas id="mycanvas" width="200" height="100" style="border:1px solid #c3c3c3;">
your browser does not support the canvas element.
</canvas>

<script type="text/javascript">

var c=document.getelementbyid("mycanvas");
var cxt=c.getcontext("2d");
cxt.moveto(10,10);
cxt.lineto(150,50);
cxt.lineto(10,50);
cxt.stroke();

</script>

</body>
</html>

圆形

<!doctype html>
<html>
<body>

<canvas id="mycanvas" width="200" height="100" style="border:1px solid #c3c3c3;">
your browser does not support the canvas element.
</canvas>

<script type="text/javascript">

var c=document.getelementbyid("mycanvas");
var cxt=c.getcontext("2d");
cxt.fillstyle="#ff0000";
cxt.beginpath();
cxt.arc(70,18,15,0,math.pi*2,true);
cxt.closepath();
cxt.fill();

</script>

</body>
</html>

渐变

<!doctype html>
<html>
<body>

<canvas id="mycanvas" width="200" height="100" style="border:1px solid #c3c3c3;">
your browser does not support the canvas element.
</canvas>


<script type="text/javascript">

var c=document.getelementbyid("mycanvas");
var cxt=c.getcontext("2d");
var grd=cxt.createlineargradient(0,0,175,50);
grd.addcolorstop(0,"#ff0000");
grd.addcolorstop(1,"#00ff00");
cxt.fillstyle=grd;
cxt.fillrect(0,0,175,50);

</script>

</body>
</html>

图像

<!doctype html>
<html>
<body>

<canvas id="mycanvas" width="200" height="100" style="border:1px solid #c3c3c3;">
your browser does not support the canvas element.
</canvas>

<script type="text/javascript">

var c=document.getelementbyid("mycanvas");
var cxt=c.getcontext("2d");
var img=new image()
img.src="http://t2.27270.com/uploads/tu/mx/180/2.jpg"
cxt.drawimage(img,0,0);

</script>

</body>
</html>

html5 svg


html5 内联 svg


什么是svg?

  • svg 指可伸缩矢量图形 (scalable vector graphics)
  • svg 用于定义用于网络的基于矢量的图形
  • svg 使用 xml 格式定义图形
  • svg 图像在放大或改变尺寸的情况下其图形质量不会有损失
  • svg 是万维网联盟的标准

svg 的优势

与其他图像格式相比(比如 jpeg 和 gif),使用 svg 的优势在于:

  • svg 图像可通过文本编辑器来创建和修改
  • svg 图像可被搜索、索引、脚本化或压缩
  • svg 是可伸缩的
  • svg 图像可在任何的分辨率下被高质量地打印
  • svg 可在图像质量不下降的情况下被放大

浏览器支持

internet explorer 9、firefox、opera、chrome 以及 safari 支持内联 svg。


把 svg 直接嵌入 html 页面

在 html5 中,您能够将 svg 元素直接嵌入 html 页面中:

<!doctype html>
<html>
<body>

<svg xmlns="http://www.w3.org/2000/svg" version="1.1" height="190">
<polygon points="100,10 40,180 190,60 10,60 160,180"
style="fill:red;stroke:blue;stroke-width:3;fill-rule:evenodd;" />
</svg>

</body>
</html>

html5 canvas vs svg


canvas 和 svg 都允许您在浏览器中创建图形,但是它们在根本上是不同的。


svg

  • svg 是一种使用 xml 描述 2d 图形的语言。
  • svg 基于 xml,这意味着 svg dom 中的每个元素都是可用的。您可以为某个元素附加 javascript 事件处理器。
  • 在 svg 中,每个被绘制的图形均被视为对象。如果 svg 对象的属性发生变化,那么浏览器能够自动重现图形。

canvas

  • canvas 通过 javascript 来绘制 2d 图形。
  • canvas 是逐像素进行渲染的。
  • 在 canvas 中,一旦图形被绘制完成,它就不会继续得到浏览器的关注。如果其位置发生变化,那么整个场景也需要重新绘制,包括任何或许已被图形覆盖的对象。

canvas 与 svg 的比较不同之处

  • canvas
  • 依赖分辨率
  • 不支持事件处理器
  • 弱的文本渲染能力
  • 能够以 .png 或 .jpg 格式保存结果图像
  • 最适合图像密集型的游戏,其中的许多对象会被频繁重绘
  • svg
  • 不依赖分辨率
  • 支持事件处理器
  • 最适合带有大型渲染区域的应用程序(比如谷歌地图)
  • 复杂度高会减慢渲染速度(任何过度使用 dom 的应用都不快)
  • 不适合游戏应用

html5 地理定位


html5 geolocation(地理定位)用于定位用户的位置。


定位用户的位置

html5 geolocation api 用于获得用户的地理位置。

鉴于该特性可能侵犯用户的隐私,除非用户同意,否则用户位置信息是不可用的。


浏览器支持

internet explorer 9、firefox、chrome、safari 以及 opera 支持地理定位。

注释:对于拥有 gps 的设备,比如 iphone,地理定位更加精确。


html5 - 使用地理定位

请使用 getcurrentposition() 方法来获得用户的位置。
下例是一个简单的地理定位实例,可返回用户位置的经度和纬度。

<script>
var x=document.getelementbyid("demo");
function getlocation()
{
if (navigator.geolocation)
{
navigator.geolocation.getcurrentposition(showposition);
}
else{x.innerhtml="geolocation is not supported by this browser.";}
}
function showposition(position)
{
x.innerhtml="latitude: " + position.coords.latitude +
"<br />longitude: " + position.coords.longitude;
}
</script>
  • 例子解释:
  • 检测是否支持地理定位
  • 如果支持,则运行 getcurrentposition() 方法。如果不支持,则向用户显示一段消息。
  • 如果getcurrentposition()运行成功,则向参数showposition中规定的函数返回一个coordinates对象
  • showposition() 函数获得并显示经度和纬度

上面的例子是一个非常基础的地理定位脚本,不含错误处理。


处理错误和拒绝

function showerror(error)
{
switch(error.code)
{
case error.permission_denied:
x.innerhtml="user denied the request for geolocation."
break;
case error.position_unavailable:
x.innerhtml="location information is unavailable."
break;
case error.timeout:
x.innerhtml="the request to get user location timed out."
break;
case error.unknown_error:
x.innerhtml="an unknown error occurred."
break;
}
}```


举例

​```html
<!doctype html>
<html>
<body>
<p id="demo">点击这个按钮,获得您的坐标:</p>
<button onclick="getlocation()">试一下</button>
<script>
var x=document.getelementbyid("demo");
function getlocation()
{
if (navigator.geolocation)
{
navigator.geolocation.getcurrentposition(showposition,showerror);
}
else{x.innerhtml="geolocation is not supported by this browser.";}
}
function showposition(position)
{
x.innerhtml="latitude: " + position.coords.latitude + 
"<br />longitude: " + position.coords.longitude;    
}
function showerror(error)
{
switch(error.code) 
{
case error.permission_denied:
x.innerhtml="user denied the request for geolocation."
break;
case error.position_unavailable:
x.innerhtml="location information is unavailable."
break;
case error.timeout:
x.innerhtml="the request to get user location timed out."
break;
case error.unknown_error:
x.innerhtml="an unknown error occurred."
break;
}
}
</script>
</body>
</html>

错误代码:

  • permission denied - 用户不允许地理定位
  • position unavailable - 无法获取当前位置
  • timeout - 操作超时

在地图中显示结果

  • 如需在地图中显示结果,您需要访问可使用经纬度的地图服务,比如谷歌地图或百度地图:
function showposition(position)
{
var latlon=position.coords.latitude+","+position.coords.longitude;

var img_url="http://maps.googleapis.com/maps/api/staticmap?center="
+latlon+"&zoom=14&size=400x300&sensor=false";

document.getelementbyid("mapholder").innerhtml="<img src='"+img_url+"' />";
}```

**举例**

​```html
<!doctype html>
<html>
<body>
<p id="demo">点击这个按钮,获得您的位置:</p>
<button onclick="getlocation()">试一下</button>
<div id="mapholder"></div>
<script>
var x=document.getelementbyid("demo");
function getlocation()
{
if (navigator.geolocation)
{
navigator.geolocation.getcurrentposition(showposition,showerror);
}
else{x.innerhtml="geolocation is not supported by this browser.";}
}

function showposition(position)
{
var latlon=position.coords.latitude+","+position.coords.longitude;

var img_url="http://maps.googleapis.com/maps/api/staticmap?center="
+latlon+"&zoom=14&size=400x300&sensor=false";
document.getelementbyid("mapholder").innerhtml="<img src='"+img_url+"' />";
}

function showerror(error)
{
switch(error.code) 
{
case error.permission_denied:
x.innerhtml="user denied the request for geolocation."
break;
case error.position_unavailable:
x.innerhtml="location information is unavailable."
break;
case error.timeout:
x.innerhtml="the request to get user location timed out."
break;
case error.unknown_error:
x.innerhtml="an unknown error occurred."
break;
}
}
</script>
</body>
</html>

在上例中,我们使用返回的经纬度数据在谷歌地图中显示位置(使用静态图像)。

谷歌地图脚本

<!doctype html>
<html>
<body>
<p id="demo">点击这个按钮,获得您的位置:</p>
<button onclick="getlocation()">试一下</button>
<div id="mapholder"></div>
<script src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script>
var x=document.getelementbyid("demo");
function getlocation()
{
if (navigator.geolocation)
{
navigator.geolocation.getcurrentposition(showposition,showerror);
}
else{x.innerhtml="geolocation is not supported by this browser.";}
}

function showposition(position)
{
lat=position.coords.latitude;
lon=position.coords.longitude;
latlon=new google.maps.latlng(lat, lon)
mapholder=document.getelementbyid('mapholder')
mapholder.style.height='250px';
mapholder.style.width='500px';

var myoptions={
center:latlon,zoom:14,
maptypeid:google.maps.maptypeid.roadmap,
maptypecontrol:false,
navigationcontroloptions:{style:google.maps.navigationcontrolstyle.small}
};
var map=new google.maps.map(document.getelementbyid("mapholder"),myoptions);
var marker=new google.maps.marker({position:latlon,map:map,title:"you are here!"});
}

function showerror(error)
{
switch(error.code) 
{
case error.permission_denied:
x.innerhtml="user denied the request for geolocation."
break;
case error.position_unavailable:
x.innerhtml="location information is unavailable."
break;
case error.timeout:
x.innerhtml="the request to get user location timed out."
break;
case error.unknown_error:
x.innerhtml="an unknown error occurred."
break;
}
}
</script>
</body>
</html>

给定位置的信息

本页演示的是如何在地图上显示用户的位置。不过,地理定位对于给定位置的信息同样很有用处。

案例:

  • 更新本地信息
  • 显示用户周围的兴趣点
  • 交互式车载导航系统 (gps)

getcurrentposition() 方法 - 返回数据

  • 若成功,则 getcurrentposition() 方法返回对象。始终会返回 latitude、longitude 以及 accuracy 属性。如果可用,则会返回其他下面的属性。
属性                 描述
coords.latitude     十进制数的纬度
coords.longitude    十进制数的经度
coords.accuracy     位置精度
coords.altitude     海拔,海平面以上以米计
coords.altitudeaccuracy 位置的海拔精度
coords.heading     方向,从正北开始以度计
coords.speed       速度,以米/每秒计

geolocation 对象 - 其他有趣的方法

  • watchposition() - 返回用户的当前位置,并继续返回用户移动时的更新位置(就像汽车上的 gps)。
  • clearwatch() - 停止 watchposition() 方法

下面的例子展示 watchposition() 方法。您需要一台精确的 gps 设备来测试该例(比如 iphone):

<script>
var x=document.getelementbyid("demo");
function getlocation()
{
if (navigator.geolocation)
{
navigator.geolocation.watchposition(showposition);
}
else{x.innerhtml="geolocation is not supported by this browser.";}
}
function showposition(position)
{
x.innerhtml="latitude: " + position.coords.latitude +
"<br />longitude: " + position.coords.longitude;
}
</script>

html 5 web 存储


在客户端存储数据

html5 提供了两种在客户端存储数据的新方法:

  • localstorage - 没有时间限制的数据存储
  • sessionstorage - 针对一个 session 的数据存储

之前,这些都是由 cookie 完成的。但是 cookie 不适合大量数据的存储,因为它们由每个对服务器的请求来传递,这使得 cookie 速度很慢而且效率也不高。

在 html5 中,数据不是由每个服务器请求传递的,而是只有在请求时使用数据。它使在不影响网站性能的情况下存储大量数据成为可能。

对于不同的网站,数据存储于不同的区域,并且一个网站只能访问其自身的数据。

html5 使用 javascript 来存储和访问数据。


localstorage 方法

localstorage 方法存储的数据没有时间限制。第二天、第二周或下一年之后,数据依然可用。
如何创建和访问 localstorage:

<script type="text/javascript">
localstorage.lastname="smith";
document.write(localstorage.lastname);
</script>

下面的例子对用户访问页面的次数进行计数:

<script type="text/javascript">
if (localstorage.pagecount)
{
localstorage.pagecount=number(localstorage.pagecount) +1;
}
else
{
localstorage.pagecount=1;
}
document.write("visits "+ localstorage.pagecount + " time(s).");
</script>

sessionstorage 方法

sessionstorage 方法针对一个 session 进行数据存储。当用户关闭浏览器窗口后,数据会被删除。

如何创建并访问一个 sessionstorage:

<script type="text/javascript">
sessionstorage.lastname="smith";
document.write(sessionstorage.lastname);
</script>

下面的例子对用户在当前 session 中访问页面的次数进行计数:

<script type="text/javascript">
if (sessionstorage.pagecount)
{
sessionstorage.pagecount=number(sessionstorage.pagecount) +1;
}
else
{
sessionstorage.pagecount=1;
}
document.write("visits "+sessionstorage.pagecount+" time(s) this session.");
</script>

html 5 应用程序缓存


使用 html5,通过创建 cache manifest 文件,可以轻松地创建 web 应用的离线版本。


什么是应用程序缓存(application cache)?

  • html5 引入了应用程序缓存,这意味着 web 应用可进行缓存,并可在没有因特网连接时进行访问。

  • 应用程序缓存为应用带来三个优势:

  • 离线浏览 - 用户可在应用离线时使用它们
  • 速度 - 已缓存资源加载得更快
  • 减少服务器负载 - 浏览器将只从服务器下载更新过或更改过的资源。


浏览器支持

所有主流浏览器均支持应用程序缓存,除了 internet explorer。


html5 cache manifest 实例

下面的例子展示了带有 cache manifest 的 html 文档(供离线浏览):

<!doctype html>
<html manifest="demo.appcache">

<body>
the content of the document......
</body>

</html>

例子

<!doctype html>
<html manifest="/example/html5/demo_html.appcache">
<body>
<script type="text/javascript" src="/example/html5/demo_time.js">
</script>
<p id="timepara"><button onclick="getdatetime()">获得日期和事件</button></p>
<p><img src="/i/w3school_banner.gif" /></p>
<p>请打开<a href="/example/html5/html5_html_manifest.html" target="_blank">这个页面</a>,然后脱机浏览,重新加载页面。页面中的脚本和图像依然可用。</p>
</body>
</html>

cache manifest 基础

  • 如需启用应用程序缓存,请在文档的 <html> 标签中包含 manifest 属性:
<!doctype html>
<html manifest="demo.appcache">
</html>
  • 每个指定了 manifest 的页面在用户对其访问时都会被缓存。如果未指定 manifest 属性,则页面不会被缓存(除非在 manifest 文件中直接指定了该页面)。
  • manifest 文件的建议的文件扩展名是:".appcache"。

请注意,manifest 文件需要配置正确的 mime-type,即 "text/cache-manifest"。必须在 web 服务器上进行配置。


manifest 文件

manifest 文件可分为三个部分:

  • cache manifest - 在此标题下列出的文件将在首次下载后进行缓存
  • network - 在此标题下列出的文件需要与服务器的连接,且不会被缓存
  • fallback - 在此标题下列出的文件规定当页面无法访问时的回退页面(比如 404 页面)

cache manifest

第一行,cache manifest,是必需的:

cache manifest
/theme.css
/logo.gif
/main.js


上面的 manifest 文件列出了三个资源:一个 css 文件,一个 gif 图像,以及一个 javascript 文件。当 manifest 文件加载后,浏览器会从网站的根目录下载这三个文件。然后,无论用户何时与因特网断开连接,这些资源依然是可用的。

network

下面的 network 小节规定文件 "login.asp" 永远不会被缓存,且离线时是不可用的:

network:
login.asp

可以使用星号来指示所有其他资源/文件都需要因特网连接:

network:
*

fallback

下面的 fallback 小节规定如果无法建立因特网连接,则用 "offline.html" 替代 /html5/ 目录中的所有文件:

fallback:
/html5/ /404.html

注释:第一个 uri 是资源,第二个是替补。


更新缓存

一旦应用被缓存,它就会保持缓存直到发生下列情况:

  • 用户清空浏览器缓存
  • manifest 文件被修改(参阅下面的提示)
  • 由程序来更新应用缓存

实例 - 完整的 manifest 文件

cache manifest
## 2012-02-21 v1.0.0
/theme.css
/logo.gif
/main.js

network:
login.asp

fallback:

重要的提示:以 "#" 开头的是注释行,但也可满足其他用途。应用的缓存会在其 manifest 文件更改时被更新。如果您编辑了一幅图片,或者修改了一个 javascript 函数,这些改变都不会被重新缓存。更新注释行中的日期和版本号是一种使浏览器重新缓存文件的办法。


关于应用程序缓存的注释

一旦文件被缓存,则浏览器会继续展示已缓存的版本,即使您修改了服务器上的文件。为了确保浏览器更新缓存,您需要更新 manifest 文件。

注释:浏览器对缓存数据的容量限制可能不太一样(某些浏览器设置的限制是每个站点 5mb)。

html5 web workers


web worker 是运行在后台的 javascript,不会影响页面的性能。


什么是 web worker?

当在 html 页面中执行脚本时,页面的状态是不可响应的,直到脚本已完成。

web worker 是运行在后台的 javascript,独立于其他脚本,不会影响页面的性能。您可以继续做任何愿意做的事情:点击、选取内容等等,而此时 web worker 在后台运行。


浏览器支持

所有主流浏览器均支持 web worker,除了 internet explorer。


html5 web workers 实例

下面的例子创建了一个简单的 web worker,在后台计数:

计数:

<!doctype html>
<html>
<body>

<p>计数: <output id="result"></output></p>
<button onclick="startworker()">开始 worker</button> 
<button onclick="stopworker()">停止 worker</button>
<br /><br />

<script>
var w;

function startworker()
{
if(typeof(worker)!=="undefined")
{
if(typeof(w)=="undefined")
{
w=new worker("/example/html5/demo_workers.js");
}
w.onmessage = function (event) {
document.getelementbyid("result").innerhtml=event.data;
};
}
else
{
document.getelementbyid("result").innerhtml="sorry, your browser does not support web workers...";
}
}

function stopworker()
{ 
w.terminate();
}
</script>

</body>
</html>

a.检测 web worker 支持

在创建 web worker 之前,请检测用户的浏览器是否支持它:

if(typeof(worker)!=="undefined")
{
// yes! web worker support!
// some code.....
}
else
{
// sorry! no web worker support..
}

b. 创建 web worker 文件

现在,让我们在一个外部 javascript 中创建我们的 web worker。

在这里,我们创建了计数脚本。该脚本存储于 "demo_workers.js" 文件中:

var i=0;

function timedcount()
{
i=i+1;
postmessage(i);
settimeout("timedcount()",500);
}

timedcount();

以上代码中重要的部分是 postmessage() 方法 - 它用于向 html 页面传回一段消息。

注释:web worker 通常不用于如此简单的脚本,而是用于更耗费 cpu 资源的任务。


c.创建 web worker 对象

我们已经有了 web worker 文件,现在我们需要从 html 页面调用它。

下面的代码检测是否存在 worker,如果不存在,- 它会创建一个新的 web worker 对象,然后运行 "demo_workers.js" 中的代码:

if(typeof(w)=="undefined")
{
w=new worker("demo_workers.js");
}

然后我们就可以从 web worker 发生和接收消息了。

向 web worker 添加一个 "onmessage" 事件监听器:

w.onmessage=function(event){
document.getelementbyid("result").innerhtml=event.data;
};

当 web worker 传递消息时,会执行事件监听器中的代码。event.data 中存有来自 event.data 的数据。


d.终止 web worker

当我们创建 web worker 对象后,它会继续监听消息(即使在外部脚本完成之后)直到其被终止为止。

如需终止 web worker,并释放浏览器/计算机资源,请使用terminate() 方法:

w.terminate();

完整的 web worker 实例代码

我们已经看到了 .js 文件中的 worker 代码。下面是 html 页面的代码:

<!doctype html>
<html>
<body>

<p>count numbers: <output id="result"></output></p>
<button onclick="startworker()">start worker</button>
<button onclick="stopworker()">stop worker</button>
<br /><br />

<script>
var w;

function startworker()
{
if(typeof(worker)!=="undefined")
{
if(typeof(w)=="undefined")
{
w=new worker("demo_workers.js");
}
w.onmessage = function (event) {
document.getelementbyid("result").innerhtml=event.data;
};
}
else
{
document.getelementbyid("result").innerhtml="sorry, your browser
does not support web workers...";
}
}

function stopworker()
{
w.terminate();
}
</script>

</body>
</html>

web workers 和 dom

  • 由于 web worker 位于外部文件中,它们无法访问下例 javascript 对象:
  • window 对象
  • document 对象
  • parent 对象

html 5 服务器发送事件


html5 服务器发送事件(server-sent event)允许网页获得来自服务器的更新。


server-sent 事件 - 单向消息传递

server-sent 事件指的是网页自动获取来自服务器的更新。

以前也可能做到这一点,前提是网页不得不询问是否有可用的更新。通过服务器发送事件,更新能够自动到达。

例子:facebook/twitter 更新、估价更新、新的博文、赛事结果等。


浏览器支持

所有主流浏览器均支持服务器发送事件,除了 internet explorer。


接收 server-sent 事件通知

eventsource 对象用于接收服务器发送事件通知:

var source=new eventsource("demo_sse.php");
source.onmessage=function(event)
{
document.getelementbyid("result").innerhtml+=event.data + "<br />";
};```

​```html
<!doctype html>
<html>
<body>
<h1>获得服务器更新</h1>
<div id="result"></div>

<script>
if(typeof(eventsource)!=="undefined")
{
var source=new eventsource("/example/html5/demo_sse.php");
source.onmessage=function(event)
{
document.getelementbyid("result").innerhtml+=event.data + "<br />";
};
}
else
{
document.getelementbyid("result").innerhtml="sorry, your browser does not support server-sent events...";
}
</script>

</body>
</html>

例子解释:

  • 创建一个新的 eventsource 对象,然后规定发送更新的页面的 url(本例中是 "demo_sse.php")
  • 每接收到一次更新,就会发生 onmessage 事件
  • 当 onmessage 事件发生时,把已接收的数据推入 id 为 "result" 的元素中

检测 server-sent 事件支持

  • 在上面的 tiy 实例中,我们编写了一段额外的代码来检测服务器发送事件的浏览器支持情况:
if(typeof(eventsource)!=="undefined")
{
// yes! server-sent events support!
// some code.....
}
else
{
// sorry! no server-sent events support..
}

服务器端代码实例

为了让上面的例子可以运行,您还需要能够发送数据更新的服务器(比如 php 和 asp)。

服务器端事件流的语法是非常简单的。把 "content-type" 报头设置为 "text/event-stream"。现在,您可以开始发送事件流了。

** php 代码 (demo_sse.php):**

<?php
header('content-type: text/event-stream');
header('cache-control: no-cache');

$time = date('r');
echo "data: the server time is: {$time}\n\n";
flush();
?>

asp 代码 (vb) (demo_sse.asp):

<%
response.contenttype="text/event-stream"
response.expires=-1
response.write("data: " & now())
response.flush()
%>

代码解释:

  • 把报头 "content-type" 设置为 "text/event-stream"
  • 规定不对页面进行缓存
  • 输出发送日期(始终以 "data: " 开头)
  • 向网页刷新输出数据

html5 表单

html5 输入类型


html5 新的 input 类型


html5 拥有多个新的表单输入类型。这些新特性提供了更好的输入控制和验证。

本章全面介绍这些新的输入类型:

  • email
  • url
  • number
  • range
  • date pickers (date, month, week, time, datetime, datetime-local)
  • search
  • color

浏览器支持

HTML5学习手册

注释:opera 对新的输入类型的支持最好。不过您已经可以在所有主流的浏览器中使用它们了。即使不被支持,仍然可以显示为常规的文本域。


input 类型 - email

email 类型用于应该包含 e-mail 地址的输入域。

在提交表单时,会自动验证 email 域的值。

e-mail: <input type="email" name="user_email" />

提示:iphone 中的 safari 浏览器支持 email 输入类型,并通过改变触摸屏键盘来配合它(添加 @ 和 .com 选项)。


input 类型 - url
url 类型用于应该包含 url 地址的输入域。

在提交表单时,会自动验证 url 域的值。

homepage: <input type="url" name="user_url" />

提示:iphone 中的 safari 浏览器支持 url 输入类型,并通过改变触摸屏键盘来配合它(添加 .com 选项)。


input 类型 - number

number 类型用于应该包含数值的输入域。

您还能够设定对所接受的数字的限定:

points: <input type="number" name="points" min="1" max="10" />

请使用下面的属性来规定对数字类型的限定:

属性      值         描述
max      number    规定允许的最大值
min      number    规定允许的最小值
step     number    规定合法的数字间隔(如果 step="3",则合法的数是 -3,0,3,6 等)
value    number    规定默认值


提示:iphone 中的 safari 浏览器支持 number 输入类型,并通过改变触摸屏键盘来配合它(显示数字)。


input 类型 - range

range 类型用于应该包含一定范围内数字值的输入域。

range 类型显示为滑动条。

您还能够设定对所接受的数字的限定:

<input type="range" name="points" min="1" max="10" />

请使用下面的属性来规定对数字类型的限定:

属性      值          描述
max      number    规定允许的最大值
min      number    规定允许的最小值
step     number    规定合法的数字间隔(如果 step="3",则合法的数是 -3,0,3,6 等)
value    number    规定默认值


input 类型 - date pickers(日期选择器)

html5 拥有多个可供选取日期和时间的新输入类型:

  • date - 选取日、月、年
  • month - 选取月、年
  • week - 选取周和年
  • time - 选取时间(小时和分钟)
  • datetime - 选取时间、日、月、年(utc 时间)
  • datetime-local - 选取时间、日、月、年(本地时间)
date: <input type="date" name="user_date" />
date: <input type="date" name="user_date" />

输入类型 "month":

<!doctype html>
<html>
<body>

<form action="/example/html5/demo_form.asp" method="get">
month: <input type="month" name="user_date" />
<input type="submit" />
</form>

</body>
</html>

输入类型 "week":

<!doctype html>
<html>
<body>

<form action="/example/html5/demo_form.asp" method="get">
week: <input type="week" name="user_date" />
<input type="submit" />
</form>

</body>
</html>

输入类型 "time":

<!doctype html>
<html>
<body>

<form action="/example/html5/demo_form.asp" method="get">
time: <input type="time" name="user_date" />
<input type="submit" />
</form>

</body>
</html>

输入类型 "datetime":

<!doctype html>
<html>
<body>

<form action="/example/html5/demo_form.asp" method="get">
date and time: <input type="datetime" name="user_date" />
<input type="submit" />
</form>

</body>
</html>

输入类型 "datetime-local":

<!doctype html>
<html>
<body>

<form action="/example/html5/demo_form.asp" method="get">
date and time: <input type="datetime-local" name="user_date" />
<input type="submit" />
</form>

</body>
</html>

  • search 类型用于搜索域,比如站点搜索或 google 搜索。
  • search 域显示为常规的文本域。

html5 表单元素


html5 的新的表单元素:

html5 拥有若干涉及表单的元素和属性。

本章介绍以下新的表单元素:

  • datalist
  • keygen
  • output

浏览器支持

input type    ie    firefox    opera    chrome    safari
datalist      no      no          9.5     no        no
keygen        no      no         10.5    3.0        no
output        no      no          9.5     no        no


datalist 元素

  • datalist 元素规定输入域的选项列表。
  • 列表是通过 datalist 内的 option 元素创建的。
  • 如需把 datalist 绑定到输入域,请用输入域的 list 属性引用 datalist 的 id:
<!doctype html>
<html>
<body>

<form action="/example/html5/demo_form.asp" method="get">
webpage: <input type="url" list="url_list" name="link" />
<datalist id="url_list">
<option label="w3school" value="http://www.w3school.com.cn" />
<option label="google" value="http://www.google.com" />
<option label="microsoft" value="http://www.microsoft.com" />
</datalist>
<input type="submit" />
</form>

</body>
</html>

提示:option 元素永远都要设置 value 属性。


keygen 元素

keygen 元素的作用是提供一种验证用户的可靠方法。

keygen 元素是密钥对生成器(key-pair generator)。当提交表单时,会生成两个键,一个是私钥,一个公钥。

私钥(private key)存储于客户端,公钥(public key)则被发送到服务器。公钥可用于之后验证用户的客户端证书(client certificate)。

目前,浏览器对此元素的糟糕的支持度不足以使其成为一种有用的安全标准。

<form action="demo_form.asp" method="get">
username: <input type="text" name="usr_name" />
encryption: <keygen name="security" />
<input type="submit" />
</form>
<form action="demo_form.asp" method="get">
username: <input type="text" name="usr_name" />
encryption: <keygen name="security" />
<input type="submit" />
</form>

output 元素

output 元素用于不同类型的输出,比如计算或脚本输出:

<output id="result" onforminput="rescalc()"></output>

简易计算器

<!doctype html>
<html>
<head>
<script type="text/javascript">
function rescalc()
{
numa=document.getelementbyid("num_a").value;
numb=document.getelementbyid("num_b").value;
document.getelementbyid("result").value=number(numa)+number(numb);
}
</script>
</head>
<body>
<p>使用 output 元素的简易计算器:</p>
<form onsubmit="return false">
<input id="num_a" /> +
<input id="num_b" /> =
<output id="result" onforminput="rescalc()"></output>
</form>

</body>
</html>

html5 表单属性


html5 的新的表单属性

本章讲解涉及 <form> 和 <input>元素的新属性。

新的 form 属性:

autocomplete
novalidate

新的 input 属性:

autocomplete
autofocus
form
form overrides (formaction, formenctype, formmethod, formnovalidate, formtarget)
height 和 width
list
min, max 和 step
multiple
pattern (regexp)
placeholder
required

浏览器支持

HTML5学习手册


autocomplete 属性

autocomplete 属性规定 form 或 input 域应该拥有自动完成功能。

注释:autocomplete 适用于 <form> 标签,以及以下类型的 <input>标签:text, search, url, telephone, email, password, datepickers, range 以及 color。

当用户在自动完成域中开始输入时,浏览器应该在该域中显示填写的选项:

<form action="demo_form.asp" method="get" autocomplete="on">
first name: <input type="text" name="fname" /><br />
last name: <input type="text" name="lname" /><br />
e-mail: <input type="email" name="email" autocomplete="off" /><br />
<input type="submit" />
</form>

注释:在某些浏览器中,您可能需要启用自动完成功能,以使该属性生效。


autofocus 属性

autofocus 属性规定在页面加载时,域自动地获得焦点。

注释:autofocus 属性适用于所有 标签的类型。

user name: <input type="text" name="user_name"  autofocus="autofocus" />

form 属性

form 属性规定输入域所属的一个或多个表单。

注释:form 属性适用于所有 <input>标签的类型。

form 属性必须引用所属表单的 id:

<form action="demo_form.asp" method="get" id="user_form">
first name:<input type="text" name="fname" />
<input type="submit" />
</form>
last name: <input type="text" name="lname" form="user_form" />

注释:如需引用一个以上的表单,请使用空格分隔的列表。


表单重写属性

表单重写属性(form override attributes)允许您重写 form 元素的某些属性设定。

表单重写属性有:

formaction - 重写表单的 action 属性
formenctype - 重写表单的 enctype 属性
formmethod - 重写表单的 method 属性
formnovalidate - 重写表单的 novalidate 属性
formtarget - 重写表单的 target 属性


注释:表单重写属性适用于以下类型的 标签:submit 和 image。

<form action="demo_form.asp" method="get" id="user_form">
e-mail: <input type="email" name="userid" /><br />
<input type="submit" value="submit" />
<br />
<input type="submit" formaction="demo_admin.asp" value="submit as admin" />
<br />
<input type="submit" formnovalidate="true" value="submit without validation" />
<br />
</form>

height 和 width 属性

height 和 width 属性规定用于 image 类型的 input 标签的图像高度和宽度。

注释:height 和 width 属性只适用于 image 类型的 标签。

<input type="image" src="img_submit.gif" width="99" height="99" />

list 属性

list 属性规定输入域的 datalist。datalist 是输入域的选项列表。

注释:list 属性适用于以下类型的 <input> 标签:text, search, url, telephone, email, date pickers, number, range 以及 color。
webpage: <input type="url" list="url_list" name="link" />
<datalist id="url_list">
<option label="w3schools" value="http://www.w3school.com.cn" />
<option label="google" value="http://www.google.com" />
<option label="microsoft" value="http://www.microsoft.com" />
</datalist>

min、max 和 step 属性

min、max 和 step 属性用于为包含数字或日期的 input 类型规定限定(约束)。

max 属性规定输入域所允许的最大值。

min 属性规定输入域所允许的最小值。

step 属性为输入域规定合法的数字间隔(如果 step="3",则合法的数是 -3,0,3,6 等)。

注释:min、max 和 step 属性适用于以下类型的 <input> 标签:date pickers、number 以及 range。

下面的例子显示一个数字域,该域接受介于 0 到 10 之间的值,且步进为 3(即合法的值为 0、3、6 和 9):

points: <input type="number" name="points" min="0" max="10" step="3" />

multiple 属性

multiple 属性规定输入域中可选择多个值。

注释:multiple 属性适用于以下类型的 <input> 标签:email 和 file。
select images: <input type="file" name="img" multiple="multiple" />

novalidate 属性

novalidate 属性规定在提交表单时不应该验证 form 或 input 域。

注释:novalidate 属性适用于 <form> 以及以下类型的 <input> 标签:text, search, url, telephone, email, password, date pickers, range 以及 color.
<form action="demo_form.asp" method="get" novalidate="true">
e-mail: <input type="email" name="user_email" />
<input type="submit" />
</form>

pattern 属性

pattern 属性规定用于验证 input 域的模式(pattern)。

模式(pattern) 是正则表达式。您可以在 javascript 中学习到有关正则表达式的内容。

注释:pattern 属性适用于以下类型的 <input> 标签:text, search, url, telephone, email 以及 password。

下面的例子显示了一个只能包含三个字母的文本域(不含数字及特殊字符):

country code: <input type="text" name="country_code"
pattern="[a-z]{3}" title="three letter country code" />

placeholder 属性

placeholder 属性提供一种提示(hint),描述输入域所期待的值。

注释:placeholder 属性适用于以下类型的 <input> 标签:text, search, url, telephone, email 以及 password。

提示(hint)会在输入域为空时显示出现,会在输入域获得焦点时消失:

<input type="search" name="user_search"  placeholder="search w3school" />

required 属性

required 属性规定必须在提交之前填写输入域(不能为空)。

注释:required 属性适用于以下类型的 <input> 标签:text, search, url, telephone, email, password, date pickers, number, checkbox, radio 以及 file。
name: <input type="text" name="usr_name" required="required" />

html 参考手册

html 属性

html 事件

html 视频/音频

html 画布

html 文档类型

html 颜色名

html 字符集
html ascii
html iso-8859-1
html 符号
html url 编码
html 语言代码
html 消息

html5 参考手册

html 属性
html 事件
html 视频/音频
html 画布
html 文档类型
html 颜色名
html 字符集
html ascii
html iso-8859-1
html 符号
html url 编码
html 语言代码
http 消息
http 方法