HTMLSourceElement: type 属性

HTMLSourceElement 接口的 type 属性是一个字符串,表示媒体资源的 MIME 类型

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

字符串。

示例

html
<source
  id="el"
  src="large.webp"
  type="video/webp"
  media="screen and (width >= 600px)" />
js
const el = document.getElementById("el");
console.log(el.type); // Output: "video/webp"

规范

规范
HTML
# dom-source-type

浏览器兼容性

另见