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

Restituisce un riferimento al documento contenuto nella finestra.

Sintassi

doc = window.document

Parametri

  • doc è un riferimento a un oggetto document.

Esempio

<html>
<head>
   <title>Ciao, mondo!</title>
</head>
<body>

<script type="text/javascript">
   var doc = window.document;
   alert( doc.title);    // produce: Ciao, mondo!
</script>

</body>
</html>

Specifiche

HTML

Tag del documento e collaboratori

 Hanno collaborato alla realizzazione di questa pagina: teoli, Federico
 Ultima modifica di: teoli,