HTML:标记语言
CSS:样式语言
JavaScript:脚本语言
Web API:编程接口
所有 Web 技术
学习 Web 开发
发现我们的工具
更好地了解 MDN
HTMLSourceElement 接口的 type 属性是一个字符串,表示媒体资源的 MIME 类型。
HTMLSourceElement
type
它反映了 <source> 元素的 type 属性。
<source>
字符串。
<source id="el" src="large.webp" type="video/webp" media="screen and (width >= 600px)" />
const el = document.getElementById("el"); console.log(el.type); // Output: "video/webp"
加载中…
HTMLSourceElement.src
HTMLSourceElement.srcset
HTMLSourceElement.media
HTMLSourceElement.sizes
<picture>
<audio>
<video>