From 4873c5f1122ac800cf3c916a52df07e05ddc9dcf Mon Sep 17 00:00:00 2001 From: MDN Date: Fri, 11 Feb 2022 00:58:37 +0000 Subject: [CRON] sync translated content --- .../xmlhttprequesteventtarget/onabort/index.html | 63 ------------------- .../xmlhttprequesteventtarget/onerror/index.html | 61 ------------------ .../xmlhttprequesteventtarget/onload/index.html | 61 ------------------ .../onloadstart/index.html | 61 ------------------ .../onprogress/index.html | 73 ---------------------- 5 files changed, 319 deletions(-) delete mode 100644 files/ja/web/api/xmlhttprequesteventtarget/onabort/index.html delete mode 100644 files/ja/web/api/xmlhttprequesteventtarget/onerror/index.html delete mode 100644 files/ja/web/api/xmlhttprequesteventtarget/onload/index.html delete mode 100644 files/ja/web/api/xmlhttprequesteventtarget/onloadstart/index.html delete mode 100644 files/ja/web/api/xmlhttprequesteventtarget/onprogress/index.html (limited to 'files/ja/web/api/xmlhttprequesteventtarget') diff --git a/files/ja/web/api/xmlhttprequesteventtarget/onabort/index.html b/files/ja/web/api/xmlhttprequesteventtarget/onabort/index.html deleted file mode 100644 index c6a48aa880..0000000000 --- a/files/ja/web/api/xmlhttprequesteventtarget/onabort/index.html +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: XMLHttpRequestEventTarget.onabort -slug: Web/API/XMLHttpRequestEventTarget/onabort -tags: - - API - - Property - - Reference - - Web - - XHMLHttpRequestEventTarget - - イベントハンドラ -translation_of: Web/API/XMLHttpRequestEventTarget/onabort ---- -
{{APIRef("XMLHttpRequest")}}
- -

XMLHttpRequestEventTarget.onabort は、 {{domxref("XMLHttpRequest.abort()")}} 関数が呼ばれたときなどの {{domxref("XMLHttpRequest")}} トランザクションが中止されたときに呼び出される関数です。

- -

構文

- -
XMLHttpRequest.onabort = callback;
- -

- - - -

- -
var xmlhttp = new XMLHttpRequest(),
-  method = 'GET',
-  url = 'https://developer.mozilla.org/';
-
-xmlhttp.open(method, url, true);
-xmlhttp.onabort = function () {
-  console.log('** The request was aborted');
-};
-xmlhttp.send();
-//..
-xmlhttp.abort(); // This will invoke our onabort handler above
-
- -

仕様

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

ブラウザーの互換性

- - - -

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

diff --git a/files/ja/web/api/xmlhttprequesteventtarget/onerror/index.html b/files/ja/web/api/xmlhttprequesteventtarget/onerror/index.html deleted file mode 100644 index 0735301636..0000000000 --- a/files/ja/web/api/xmlhttprequesteventtarget/onerror/index.html +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: XMLHttpRequestEventTarget.onerror -slug: Web/API/XMLHttpRequestEventTarget/onerror -tags: - - API - - Property - - Reference - - Web - - XMLHttpRequestEventTarget - - イベントハンドラ -translation_of: Web/API/XMLHttpRequestEventTarget/onerror ---- -
{{APIRef("XMLHttpRequest")}}
- -

XMLHttpRequestEventTarget.onerror は、エラーの為に {{domxref("XMLHttpRequest")}} トランザクションが失敗した場合に呼び出される関数です。

- -

構文

- -
XMLHttpRequest.onerror = callback;
- -

- - - -

- -
var xmlhttp = new XMLHttpRequest(),
-  method = 'GET',
-  url = 'https://developer.mozilla.org/';
-
-xmlhttp.open(method, url, true);
-xmlhttp.onerror = function () {
-  console.log("** An error occurred during the transaction");
-};
-xmlhttp.send();
-
- -

仕様

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

ブラウザーの互換性

- - - -

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

diff --git a/files/ja/web/api/xmlhttprequesteventtarget/onload/index.html b/files/ja/web/api/xmlhttprequesteventtarget/onload/index.html deleted file mode 100644 index f208d27499..0000000000 --- a/files/ja/web/api/xmlhttprequesteventtarget/onload/index.html +++ /dev/null @@ -1,61 +0,0 @@ ---- -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")}}

diff --git a/files/ja/web/api/xmlhttprequesteventtarget/onloadstart/index.html b/files/ja/web/api/xmlhttprequesteventtarget/onloadstart/index.html deleted file mode 100644 index 606959a180..0000000000 --- a/files/ja/web/api/xmlhttprequesteventtarget/onloadstart/index.html +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: XMLHttpRequestEventTarget.onloadstart -slug: Web/API/XMLHttpRequestEventTarget/onloadstart -tags: - - API - - Property - - Reference - - Web - - XMLHttpRequestEventTarget - - イベントハンドラ -translation_of: Web/API/XMLHttpRequestEventTarget/onloadstart ---- -
{{APIRef("XMLHttpRequest")}}
- -

XMLHttpRequestEventTarget.onloadstart は、 {{domxref("XMLHttpRequest")}} トランザクションがデータ転送を開始するときに呼び出される関数です。

- -

構文

- -
XMLHttpRequest.onloadstart = 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")}}

diff --git a/files/ja/web/api/xmlhttprequesteventtarget/onprogress/index.html b/files/ja/web/api/xmlhttprequesteventtarget/onprogress/index.html deleted file mode 100644 index 7973898e1f..0000000000 --- a/files/ja/web/api/xmlhttprequesteventtarget/onprogress/index.html +++ /dev/null @@ -1,73 +0,0 @@ ---- -title: XMLHttpRequestEventTarget.onprogress -slug: Web/API/XMLHttpRequestEventTarget/onprogress -tags: - - Property - - Reference - - Web - - XHR - - XMLHttpRequestEventTarget - - イベントハンドラ -translation_of: Web/API/XMLHttpRequestEventTarget/onprogress ---- -

{{APIRef("XMLHttpRequest")}}

- -

XMLHttpRequestEventTarget.onprogress は、正常に成功する前に {{domxref("XMLHttpRequest")}} の情報を定期的に呼び出す関数です。

- -

構文

- -
XMLHttpRequest.onprogress = callback;
- -

- - - -

イベント

- - - -
XMLHttpRequest.onprogress = function (event) {
-  event.loaded;
-  event.total;
-};
- -

- -
var xmlhttp = new XMLHttpRequest(),
-  method = 'GET',
-  url = 'https://developer.mozilla.org/';
-
-xmlhttp.open(method, url, true);
-xmlhttp.onprogress = function () {
-  //do something
-};
-xmlhttp.send();
-
- -

仕様

- - - - - - - - - - - - - - -
仕様備考コメント
{{SpecName('XMLHttpRequest', '#handler-xhr-onload')}}{{Spec2('XMLHttpRequest')}}WHATWG living standard
- -

ブラウザーの互換性

- - - -

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

-- cgit v1.2.3-54-g00ecf