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.

document.body

Restituisce/setta il nodo <body> o il nodo <frameset> del documento corrente.

Sintassi

objRef = document.body;
document.body =
objRef;

Esempio

// in HTML: <body id="oldBodyElement"></body>
alert(document.body.id); // "oldBodyElement"
var aNewBodyElement = document.createElement("body");
aNewBodyElement.id = "newBodyElement";
document.body = aNewBodyElement;
alert(document.body.id); // "newBodyElement"

Note

document.body è l'elemento che contiene i contenuti del documento. Nei documenti con body, verrà restituito l'elemento <body>, nei documenti con un frameset verrà restituito l'elemento <frameset> is the element that contains the content for the document.

Dal momento che body è settabile, settandolo tutti i contenuti correnti del <body> esistente verranno rimossi.

Specification

DOM Level 2 HTML: HTMLDocument.body

Tag del documento e collaboratori

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