--- title: XMLHttpRequestEventTarget.onloadstart slug: Web/API/XMLHttpRequestEventTarget/onloadstart tags: - API - Property - Reference - Web - XMLHttpRequestEventTarget - イベントハンドラ translation_of: Web/API/XMLHttpRequestEventTarget/onloadstart ---
XMLHttpRequestEventTarget.onloadstart
は、 {{domxref("XMLHttpRequest")}} トランザクションがデータ転送を開始するときに呼び出される関数です。
XMLHttpRequest.onloadstart = callback;
callback
は、トランザクションがデータ転送を開始したときに呼び出される関数です。var xmlhttp = new XMLHttpRequest(), method = 'GET', url = 'https://developer.mozilla.org/'; xmlhttp.open(method, url, true); xmlhttp.onloadstart = function () { console.log("Download underway"); }; xmlhttp.send();
仕様 | ステータス | 備考 |
---|---|---|
{{SpecName('XMLHttpRequest', '#handler-xhr-onloadstart')}} | {{Spec2('XMLHttpRequest')}} | WHATWG living standard |
{{Compat("api.XMLHttpRequestEventTarget.onloadstart")}}