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

瀏覽器相容性

另見