HTML DOM Source 对象
Source 对象
Source 对象是 HTML5 中新增的。
Source 对象表示一个 HTML <source> 元素。
访问 Source 对象
您可以使用 getElementById() 来访问 <source> 元素:
var x = document.getElementById("mySource");
创建 Source 对象
您可以使用 document.createElement() 方法来创建 <source> 元素:
var x = document.createElement("SOURCE");
Source 对象属性
属性 | 描述 |
---|---|
media | 设置或返回 <source> 元素中 media 属性的值。 |
src | 设置或返回 <source> 元素中 src 属性的值。 |
type | 设置或返回 <source> 元素中 type 属性的值。 |
标准属性和事件
Source 对象同样支持标准 属性 和 事件。
版权声明:本页面内容旨在传播知识,为用户自行发布,若有侵权等问题请及时与本网联系,我们将第一时间处理。E-mail:284563525@qq.com