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

Podsumowanie

Zwraca referencję do dokumentu zawartego w oknie.

Składnia

doc = window.document

Parametry

  • doc jest referencją do obiektu document.

Przykład

<html>
<head>
   <title>Witaj, Świecie!</title>
</head>
<body>

<script type="text/javascript">
   var doc = window.document;
   alert( doc.title);    // wyświetli: Witaj, Świecie!
</script>

</body>
</html>

Specyfikacja

DOM Level 0. Nie jest częścią żadnego standardu.

 

Autorzy i etykiety dokumentu

 Autorzy tej strony: teoli, khalid32, Mgjbot, Ptak82, Internauta1024A, Jan Dudek
 Ostatnia aktualizacja: khalid32,