Anchor type 属性
Anchor 对象的 type 属性可以设置或返回 <a> 元素上被链资源的 MIME 类型
语法
设置 type 属性
anchorObject.type="MIME-type"
返回 type 属性
anchorObject.type
值 | 描述 |
---|---|
MIME-type | 描述链接文档的 MIME 类型 更多关于 MIME 类型,可以访问 IANA MIME types |
浏览器支持
所有主要浏览器都支持 type 属性
范例
返回被链资源的 MIME 类型
<p><a id="ysa" type="text/html" href="https://www.twle.cn">简单教程</a></p> <script> document.write(document.getElementById("ysa").type); </script>