--- title: XMLHttpRequestEventTarget.onload slug: Web/API/XMLHttpRequestEventTarget/onload tags: - API - Property - Reference - Web - XMLHttpRequestEventTarget - イベントハンドラ translation_of: Web/API/XMLHttpRequestEventTarget/onload ---
{{APIRef("XMLHttpRequest")}}

XMLHttpRequestEventTarget.onload は、 {{domxref("XMLHttpRequest")}} トランザクションが正常に完了した場合に呼び出される関数です。

構文

XMLHttpRequest.onload = callback;

var xmlhttp = new XMLHttpRequest(),
  method = 'GET',
  url = 'https://developer.mozilla.org/';

xmlhttp.open(method, url, true);
xmlhttp.onload = function () {
  // Do something with the retrieved data ( found in xmlhttp.response )
};
xmlhttp.send();

仕様

仕様 ステータス 備考
{{SpecName('XMLHttpRequest', '#handler-xhr-onload')}} {{Spec2('XMLHttpRequest')}} WHATWG living standard

ブラウザーの互換性

{{Compat("api.XMLHttpRequestEventTarget.onload")}}