HTMLMediaElement: abort event
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.
Событие abort
запускается, когда ресурс не был полностью загружен, но не в результате ошибки.
Примеры
js
const video = document.querySelector("video");
const videoSrc = "https://path/to/video.webm";
video.addEventListener("abort", () => {
console.log(`Abort loading: ${videoSrc}`);
});
const source = document.createElement("source");
source.setAttribute("src", videoSrc);
source.setAttribute("type", "video/webm");
video.appendChild(source);
Спецификации
Specification |
---|
HTML Standard # event-media-abort |
HTML Standard # handler-onabort |
Совместимость с браузерами
BCD tables only load in the browser