HTMLMediaElement.load() - Web API 接口参考 编辑

 load() 方法重置媒体成初始化状态,选择一个播放源, 为载入媒体重新播放做准备。 媒体预播放的信息是由 preload 这个参数决定的。

此方法只在对媒体做动态更改时管用,要么更改src属性,要么添加或删除source 。 load() 将会重置元素重新扫描可用的源,从而让改动生效。

语法

mediaElement.load();

参数

None.

返回值

undefined.

用法

调用 load() 会使媒体上所有正在进行的操作中止,然后根据 audio 或者 video 元素的 src 或者 source 属性里寻找合适的播放源并重新加载媒体内容。 更多查看  Supporting multiple formats 和 Video and audio content 。

The process of aborting any ongoing activities will cause any outstanding Promises returned by play() being resolved or rejected as appropriate based on their status before the loading of new media can begin. Pending play promises are aborted with an "AbortError" DOMException.

在load过程中 合适的事件会发生并通知给媒体本身,包括:

  • 如果已经是 load 过了,则 abort 事件发送给媒体。
  • If the element has already been initialized with media, the emptied event is sent.
  • 如果重置播放位置到开始,通常指修改播放位置,timeupdate 事件触发。
  • 当已经选择了源并且已经准备加载内容了,loadstart 事件触发。
  • 之前的几点,媒体加载并且事件已经送达

例子

例子中有一个 <video> 元素然后重置它 load().

var mediaElem = document.querySelector("video");
mediaElem.load();

说明

SpecificationStatusComment
HTML Living Standard
HTMLMediaElement.load()
Living StandardInitial definition.
HTML5
HTMLMediaElement.load()
RecommendationInitial 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:76 次

字数:4900

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文