--- title: TimeRanges.start() slug: Web/API/TimeRanges/start translation_of: Web/API/TimeRanges/start ---
{{APIRef("DOM")}}
{{gecko_minversion_header("2.0")}}
返回指定时间范围的开始偏移量。
startTime = TimeRanges.start(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-start", "TimeRanges.start()")}} | {{Spec2("HTML WHATWG")}} | Initial definition |
{{Compat("api.TimeRanges.start")}}