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.