TimeRanges.end() - Web API 接口参考 编辑
返回指定时间范围的结束偏移量。
语法
endTime = TimeRanges.end(index)
参数
index
想要检索的时间范围的索引值。
异常
- INDEX_SIZE_ERR
- 如果不存在指定索引值的时间范围,抛出
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 |
---|---|---|
HTML Living Standard TimeRanges.end() | Living Standard | Initial definition |
浏览器兼容性
BCD tables only load in the browser
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论