TextTrackCueList: length-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 schreibgeschützte length-Eigenschaft des TextTrackCueList-Interfaces gibt die Anzahl der Stichworte in der Liste zurück.

Wert

Ein unsigned long, welcher die Anzahl der Stichworte in der Liste ist.

Beispiele

Die TextTrack.cues-Eigenschaft gibt eine TextTrackCueList zurück, die die aktuellen Stichworte für diesen bestimmten Track enthält. Der Aufruf von cues.length gibt die Anzahl der Stichworte in der Liste zurück. Bei Verwendung des untenstehenden WebVTT-Tracks ist der Wert von length 5.

WEBVTT

first
00:00:00.000 --> 00:00:00.999  line:80%
Hildy!

second
00:00:01.000 --> 00:00:01.499 line:80%
How are you?

third
00:00:01.500 --> 00:00:02.999 line:80%
Tell me, is the ruler of the universe in?

fourth
00:00:03.000 --> 00:00:04.299 line:80%
Yes, they're in - in a bad humor

fifth
00:00:04.300 --> 00:00:06.000 line:80%
Somebody must've stolen the crown jewels
js
const video = document.getElementById("video");
video.onplay = () => {
  console.log(video.textTracks[0].cues.length); // 5
};

Spezifikationen

Specification
HTML Standard
# dom-texttrackcuelist-length

Browser-Kompatibilität

BCD tables only load in the browser