HTML a type属性,指定文档MIME类型
a元素type属性
HTML a链接元素中的type属性,可以用于设置链接URL指向的目标文档的MIME类型。一般情况下,type属性只能在a元素中href属性存在的情况下使用。
语法
<a href='value1' type='value2'>
type可选属性值
属性值 | 描述 |
---|---|
MIME_type | 比如:text/plain、text/html、image/jpeg、image/png、audio/mpeg、audio/ogg、audio/*、video/mp4、application/*、application/json、application/javascript、application/ecmascript、application/octet-stream |
提示:MIME类型对大小写并不敏感。
type属性实例代码,及在线编辑器
<a href='https://www.x1y1z1.com/html/html_index.html' target='_blank' type='text/html'>笨鸟工具,HTML教程</a>