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.

window.content

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+.

Podsumowanie

Zwraca obiekt Window dla zawartości głównego okna. This is useful in XUL windows that have a <browser> (or tabbrowser or <iframe>) with type="content-primary" attribute on it - the most famous example is Firefox main window, browser.xul. In such cases, content returns a reference to the Window object for the document currently displayed in the browser. It is a shortcut for browserRef.contentWindow.

In unprivileged content (webpages), content is normally equivalent to top (except in the case of a webpage loaded in a sidebar, content still refers to the Window of the currently selected tab).

Some examples use _content instead of content. The former has been deprecated for a long time, and you should use content in the new code.

Składnia

var windowObject = window.content;

Przykład

Executing the following code in a chrome XUL window with a <browser type="content-primary"/> element in it draws a red border around the first div on the page currently displayed in the browser:

content.document.getElementsByTagName("div")[0].style.border = "solid red 1px";

Specyfikacja

Nie jest częścią żadnej specyfikacji.

Zobacz także

 

Autorzy i etykiety dokumentu

 Autorzy tej strony: teoli, AshfaqHossain, Mgjbot, Ptak82, Internauta1024A
 Ostatnia aktualizacja: AshfaqHossain,