Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

nsIJSXMLHttpRequest

UWAGA: Tłumaczenie tej strony nie zostało zakończone.
Może być ona niekompletna lub wymagać korekty.
Chcesz pomóc? | Dokończ tłumaczenie | Sprawdź ortografię | Więcej takich stron+.
Interfejs nsIJSXMLHttpRequest opisuje obserwatory zdarzeń klasy XMLHttpRequest. Pozwala to aplikacji na monitorowanie żądania HTTP dotyczących informacji postępu, błędów oraz ukończeniu procesu ładowania podczas pobierania dokumentu HTTP w sposób asynchroniczny.


Please add a summary to this article.
  Last changed in Gecko 1.8.1 (Firefox 2 / Thunderbird 2 / SeaMonkey 1.1)

Dziedziczy z: nsISupports

Ostrzeżenie: Interfejs ten może być używany wyłącznie z kodu JavaScript, a nie z niezależnego kodu.

Atrybuty

Atrybut Typ Opis
onload nsIDOMEventListener Wywoływany po pełnym załadowaniu dokumentu HTTP. Zdarzenie wysyła do odbiorcy swój atrybut target ustawiony na XMLHttpRequest po zakończeniu ładowania.
onerror nsIDOMEventListener Called when an error occurs while attempting to retrieve the HTTP document. Check the status attribute of the XMLHttpRequest specified by the target attribute in order to determine which HTTP error occurred.
onprogress nsIDOMEventListener Called periodically while the document is being loaded. The event sent to the receiver has a position attribute indicating how far through the document the process is, as well as a totalSize attribute indicating the total size of the document. In addition, it has its target attribute set to the XMLHttpRequest corresponding to the progress notification.
onreadystatechange nsIOnReadyStateChangeHandler Wywoływany, gdy readyState ulegnie zmianie. What does this mean?

Uwagi

You must call open() on the XMLHttpRequest before setting any event listeners on it.

Zobacz również

Autorzy i etykiety dokumentu

 Autorzy tej strony: Bedi, Diablownik, Ptak82
 Ostatnia aktualizacja: Bedi,