HTMLSourceElement: media 屬性

HTMLSourceElement 介面的 media 屬性是一個字串,表示資源的預期目標介質。該值是一個 媒體查詢,它是媒體型別、媒體特性和邏輯運算子的逗號分隔列表。

它反映了 <source> 元素的 media 屬性。

字串。

示例

html
<source
  id="el"
  src="largeVideo.mov"
  type="video/quicktime"
  media="screen and (width >= 600px)" />
js
const el = document.getElementById("el");
console.log(el.media); // Output: "screen and (width >= 600px)"
el.media = "(width >= 800px)"; // Updates the media value

規範

規範
HTML
# dom-source-media

瀏覽器相容性

另見