此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。

View in English Always switch to English

HTMLLinkElement:type 属性

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2015年7月⁩.

HTMLLinkElement 接口的 type 属性是一个字符串,它反映了链接资源的 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); // 输出:“image/png”

规范

Specification
HTML
# dom-link-type

浏览器兼容性