Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

<address>

简介

HTML <address>元素可以让作者为它最近的<article>或者<body>祖先元素提供联系信息。在后一种情况下,它应用于整个文档。

用法说明:

  • 当表示一个和联系信息无关的任意的地址时,使用<p>元素而不是<address>元素。
  • 这个元素不能包含除了联系信息之外的任何信息,比如出版日期(这应该包含在<time>元素中)。
  • 通常,<address>元素可以放在当前section的<footer>元素中,如果存在的话。

属性

这个元素只有全局属性

示例

  <address>
    You can contact author at <a href="https://www.somedomain.com/contact">www.somedomain.com</a>.<br>
    If you see any bugs, please <a href="mailto:[email protected]">contact webmaster</a>.<br>
    You may also want to visit us:<br>
    Mozilla Foundation<br>
    1981 Landings Drive<br>
    Building K<br>
    Mountain View, CA 94043-0801<br>
    USA
  </address>

上面的HTML的输出如下:

Image:HTML-address.png

虽然<address>元素使用<i>或者<em>元素的默认样式渲染文本,但是当处理联系信息时使用<address>元素更合适,因为它表达了额外的语义信息。

规范

Specification Status Comment
WHATWG HTML Living Standard
<address>
Living Standard  
HTML5
<address>
Recommendation  
HTML 4.01 Specification
<address>
Recommendation  

浏览器兼容

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support (Yes) 1.0 (1.7 or earlier) 1.0 5.12 1.0
Feature Android Firefox Mobile (Gecko) IE Mobile Opera Mini Opera Mobile Safari Mobile
Basic support (Yes) 1.0 (1.7) (Yes) (Yes) (Yes) (Yes)

另请参阅

文档标签和贡献者

 此页面的贡献者: RenGuangHui, xingzhi
 最后编辑者: RenGuangHui,