Source 对象是 html5 中新增的
Source 对象表示一个 HTML <source> 元素
可以使用 getElementById() 来访问 <source> 元素
var x = document.getElementById("mySource");
可以使用 document.createElement() 方法来创建 <source> 元素
var x = document.createElement("source");
属性 | 描述 |
---|---|
media | 设置或返回 |
src | 设置或返回 |
type | 设置或返回 |