HTMLLinkElement:type 属性

基线 广泛可用

此功能已得到很好的建立,并且可以在许多设备和浏览器版本中使用。它自以下时间起在浏览器中可用 2015 年 7 月.

type 属性是 HTMLLinkElement 接口的一个字符串,它反映了链接资源的 MIME 类型

它反映了 <link> 元素的 type 属性。

一个字符串,必须是有效的 MIME 类型字符串。

示例

html
<link
  id="el"
  rel="apple-touch-icon"
  sizes="114x114"
  href="apple-icon-114.png"
  type="image/png" />
js
const el = document.getElementById("el");
console.log(el.type); // Output: "image/png"

规范

规范
HTML 标准
# dom-link-type

浏览器兼容性

BCD 表格仅在浏览器中加载