XMLHttpRequest:loadend 事件
基线 广泛可用
此功能已非常成熟,并在许多设备和浏览器版本中运行良好。它自 2015 年 7 月.
报告反馈
注意:此功能在 Web Workers 中可用,但 Service Workers 除外。
语法
loadend
事件在请求完成时触发,无论成功(在 load
之后)还是失败(在 abort
或 error
之后)。
在诸如
addEventListener()
之类的 методах 中使用事件名称,或设置事件处理程序属性。addEventListener("loadend", (event) => {});
onloadend = (event) => {};
事件类型
js
事件属性
一个 ProgressEvent
。继承自 Event
。
示例
一个 64 位无符号整数,表示基础进程正在执行的总工作量。使用 HTTP 下载资源时,这就是 Content-Length
(消息主体的大小),不包括标头和其他开销。
HTML
实时示例
<div class="controls">
<input
class="xhr success"
type="button"
name="xhr"
value="Click to start XHR (success)" />
<input
class="xhr error"
type="button"
name="xhr"
value="Click to start XHR (error)" />
<input
class="xhr abort"
type="button"
name="xhr"
value="Click to start XHR (abort)" />
</div>
<textarea readonly class="event-log"></textarea>
JavaScript
在诸如
addEventListener()
之类的 методах 中使用事件名称,或设置事件处理程序属性。const xhrButtonSuccess = document.querySelector(".xhr.success");
const xhrButtonError = document.querySelector(".xhr.error");
const xhrButtonAbort = document.querySelector(".xhr.abort");
const log = document.querySelector(".event-log");
function handleEvent(e) {
log.textContent = `${log.textContent}${e.type}: ${e.loaded} bytes transferred\n`;
}
function addListeners(xhr) {
xhr.addEventListener("loadstart", handleEvent);
xhr.addEventListener("load", handleEvent);
xhr.addEventListener("loadend", handleEvent);
xhr.addEventListener("progress", handleEvent);
xhr.addEventListener("error", handleEvent);
xhr.addEventListener("abort", handleEvent);
}
function runXHR(url) {
log.textContent = "";
const xhr = new XMLHttpRequest();
addListeners(xhr);
xhr.open("GET", url);
xhr.send();
return xhr;
}
xhrButtonSuccess.addEventListener("click", () => {
runXHR(
"https://raw.githubusercontent.com/mdn/content/main/files/en-us/_wikihistory.json",
);
});
xhrButtonError.addEventListener("click", () => {
runXHR("http://i-dont-exist");
});
xhrButtonAbort.addEventListener("click", () => {
runXHR(
"https://raw.githubusercontent.com/mdn/content/main/files/en-us/_wikihistory.json",
).abort();
});
html
规范
结果 |
---|
规范 # XMLHttpRequest 标准 |
规范 # event-xhr-loadend |
浏览器兼容性
handler-xhr-onloadend