返回到:HTML area标签
type 属性指定了目标 URL 的 MIME 类型。
该属性仅在 href 属性设置后才使用type属性。
注意: This attribute is purely advisory.
HTML 4.01 与 HTML5之间的差异
type 属性是 HTML <area> 标签的新属性。
语法
<area type="MIME_type">
属性值
值 | 描述 |
---|---|
MIME_type | 链接文档的 MIME 类型。. 查看标准MIME类型的完整 IANA MIME 类型 列表。 |
浏览器支持
所有主流浏览器都支持 type 属性。
实例
带有可点击区域的图像映射:
<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap">
<map name="planetmap">
<area shape="rect" coords="0,0,82,126" alt="Sun"
href="/images/sun.gif" type="image/gif">
</map>
返回到:HTML area标签
作者:terry,如若转载,请注明出处:https://www.web176.com/html_element/6928.html