HTML Audio/Video DOM textTracks 属性 详解
HTML基础 2022-06-02 15:34:10小码哥的IT人生shichen
HTML Audio/Video DOM textTracks 属性
实例
获得可用文本轨道的数量:
myVid=document.getElementById("video1");
alert(myVid.textTracks.length);
完整实例【亲自试一试】:
<!DOCTYPE html>
<html>
<body>
<button onclick="getTextTracks()" type="button">获得可用文本轨道的数量</button>
<br />
<br />
<video id="video1" controls="controls">
<source src="/demo/example/html5/mov_bbb.mp4" type="video/mp4">
<source src="/demo/example/html5/mov_bbb.ogg" type="video/ogg">
<track src="demo_sub.vtt">
Your browser does not support HTML5 video.
</video>
<script>
myVid=document.getElementById("video1");
function getTextTracks()
{
alert(myVid.textTracks.length);
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
textTracks 属性返回 TextTrackList 对象。
TextTrackList 对象表示音频/视频的可用文本轨道。
每条可用的文本轨道是由 TextTrack 对象表示的。
浏览器支持
所有主流浏览器都不支持 textTracks 属性。
语法
audio|video.textTracks
返回值
类型 | 描述 |
---|---|
TextTrackList 对象 |
表示音频/视频的可用文本轨道。 TextioTrackList 对象的属性: 注释:第一条可用文本轨道的下标是 0。
|
TextTrack 对象 |
表示一条文本轨道。 TextTrack 对象的属性:
|