GlobalEventHandlers.onloadend
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.
io error: No such file or directory (os error 2) (/home/runner/work/yari/yari/mdn/translated-content/files/ru/web/api/xmlhttprequest_api/index.md)
Примечание: This feature is available in Web Workers, except for Service Workers.
Свойство onloadend
от GlobalEventHandlers
примесь unsupported templ: event передаёт код для вызова в момент возникновения события unsupported templ: event (когда процесс загрузки ресурса окончился и остановился)
Синтаксис
img.onloadend = funcRef;
При возникновении события loadend
будет вызвана функция обработчик funcRef
.
Примеры
<img src="myImage.jpg" />
// 'loadstart' fires first, then 'load', then 'loadend'
image.addEventListener("load", function (e) {
console.log("Image loaded");
});
image.addEventListener("loadstart", function (e) {
console.log("Image load started");
});
image.addEventListener("loadend", function (e) {
console.log("Image load finished");
});
Спецификации
Specification |
---|
XMLHttpRequest Standard # event-xhr-loadend |
XMLHttpRequest Standard # handler-xhr-onloadend |
Совместимость с браузерами
BCD tables only load in the browser