TextTrackCue: id-Eigenschaft

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.

Die id-Eigenschaft des TextTrackCue-Interfaces gibt den Bezeichner für diesen Cue zurück und setzt ihn.

Wert

Ein String, der die ID dieses Cues enthält.

Beispiele

Im folgenden Beispiel wird ein neues VTTCue erstellt (das von TextTrackCue erbt). Die id-Eigenschaft wird dann auf "first" gesetzt, bevor der Cue hinzugefügt wird.

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

let cue1 = new VTTCue(0, 0.9, "Hildy!");
cue1.id = "first";
track.addCue(cue1);

Spezifikationen

Specification
HTML Standard
# dom-texttrackcue-id

Browser-Kompatibilität

BCD tables only load in the browser