html <track> 標簽為媒體元素 ( 比如 <audio> 和 <video> ) 設置外部文本軌道 這個元素用于設置字幕文件或其他包含文本的文件,當媒體播放時,這些文件是可見的 可選的屬性
范例帶有兩個字幕軌道的視頻 <video width="320" height="240" controls> <source src="/static/i/html/forrest_gump.mp4" type="video/mp4"> <source src="/static/i/html/forrest_gump.ogg" type="video/ogg"> <track src="/static/i/html/subtitles_en.vtt" kind="subtitles" srclang="en" label="English"> <track src="/static/i/html/subtitles_no.vtt" kind="subtitles" srclang="no" label="norwegian"> </video> HTML 4.01 與 HTML5 之間的差異<track> 標簽是 HTML5 中的新標簽 |