The Track object represents an HTML <track> element.
You can access a <track> element by using getElementById():
var x = document.getElementById("myTrack");
You can create a <track> element by using the document.createElement() method:
var x = document.createElement("TRACK");
Property | Description |
---|---|
default | Sets or returns the default state of the track |
kind | Sets or returns the value of the kind attribute of the track |
label | Sets or returns the value of the label attribute of the track |
readyState | Returns the current state of the track resource |
src | Sets or returns the value of the src attribute of the track |
srclang | Sets or returns the value of the srclang attribute of the track |
track | Returns a TextTrack object representing the track element's text track data |
The Track object also supports the standard properties and events.
HTML reference: HTML <track> tag
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!