HTML DOM Source 对象
JavaScript基础 2022-05-13 16:22:49小码哥的IT人生shichen
HTML DOM Source 对象
Source 对象
Source 对象是 HTML5 中的新对象。
Source 对象表示 HTML <source>
元素。
访问 Source 对象
您可以通过使用 getElementById()
来访问 <source>
元素:
var x = document.getElementById("mySource");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>演示如何访问 SOURCE 元素</h3>
<audio controls>
<source id="mySource" src="/i/horse.mp3" type="audio/mpeg">
<source src="/i/horse.ogg" type="audio/ogg">
Your browser does not support the audio element.
</audio>
<p>点击按钮来获得媒体文件的 URL。</p>
<p id="demo"></p>
<button onclick="myFunction()">试一下</button>
<script>
function myFunction()
{
var x = document.getElementById("mySource").src;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
创建 Source 对象
您可以通过使用 document.createElement()
方法来创建 <source>
元素:
var x = document.createElement("SOURCE");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>演示如何创建 SOURCE 元素</h3>
<p>点击按钮来创建两个 SOURCE 元素,并把它们添加到 AUDIO 元素。</p>
<audio controls id="myAudio" autoplay>
Your browser does not support the audio tag.
</audio><br>
<p id="demo"></p>
<button onclick="myFunction()">试一下</button>
<script>
function myFunction()
{
var x = document.createElement("SOURCE");
x.setAttribute("src", "/i/horse.mp3");
x.setAttribute("type", "audio/mpeg");
document.getElementById("myAudio").appendChild(x);
var y = document.createElement("SOURCE");
y.setAttribute("src", "/i/horse.ogg");
y.setAttribute("type", "audio/ogg");
document.getElementById("myAudio").appendChild(y);
document.getElementById("demo").innerHTML = "音频播放器可以工作了,点击播放按钮会听到一段声音。";
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
Source 对象属性
属性 | 描述 |
---|---|
media | 设置或返回 <source> 元素中 media 属性的值。 |
src | 设置或返回 <source> 元素中 src 属性的值。 |
type | 设置或返回 <source> 元素中 type 属性的值。 |
标准属性和事件
相关页面
HTML 参考手册:HTML <source> 标签