TextTrackCue.track

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

trackTextTrackCue インターフェイスの読み取り専用プロパティで、このキューが所属する TextTrack オブジェクトを返します。

TextTrack オブジェクトです。

以下の例では、新しい VTTCueTextTrackCue を継承)を作成し、それをトラックに追加しています。 track の値はコンソールに表示されます。

js
let video = document.querySelector("video");
let captiontrack = video.addTextTrack("captions", "Captions", "en");
captiontrack.mode = "showing";

let cue1 = new VTTCue(0, 0.9, "Hildy!");
captiontrack.addCue(cue1);
console.log(cue1.track); // a TextTrack object.

仕様書

Specification
HTML Standard
# dom-texttrackcue-track

ブラウザーの互換性

BCD tables only load in the browser