--- title: TimeRanges.end() slug: Web/API/TimeRanges/end translation_of: Web/API/TimeRanges/end ---
返回指定时间范围的结束偏移量。
endTime = TimeRanges.end(index)
index 想要检索的时间范围的索引值。DOMException 异常。假定页面中存在一个ID为“myVideo”的 video 元素:
var v = document.getElementById("myVideo");
var buf = v.buffered;
var numRanges = buf.length;
if (buf.length == 1) {
// only one range
if (buf.start(0) == 0 && buf.end(0) == v.duration) {
// The one range starts at the beginning and ends at
// the end of the video, so the whole thing is loaded
}
}
这个例子演示了如何通过 TimeRanges 来判断 video 是否已经完全加载。
| Specification | Status | Comment |
|---|---|---|
| {{SpecName("HTML WHATWG", "#dom-timeranges-end", "TimeRanges.end()")}} | {{Spec2("HTML WHATWG")}} | Initial definition |
{{Compat("api.TimeRanges.end")}}