目录

HTML DOM source 对象


来源对象

Source 对象表示 HTML <source> 元素。

访问源对象

您可以使用 getElementById() 访问 <source> 元素:

示例

var x = document.getElementById("mySource");
亲自试一试 »

创建来源对象

您可以使用 document.createElement() 方法创建 <source> 元素:

示例

var x = document.createElement("SOURCE");
亲自试一试 »

来源对象属性

Property Description
media Sets or returns the value of the media attribute in a <source> element
src Sets or returns the value of the src attribute in a <source> element
type Sets or returns the value of the type attribute in a <source> element

标准属性和事件

Source 对象还支持标准特性事件


相关页面

HTML 教程:HTML5视频

HTML 教程:HTML5 音频

HTML 参考:HTML <源> 标签