Diciamo che abbiamo questo markup:Come ottenere l'elemento successivo usando solo JavaScript?
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8" />
<title>project.js</title>
<script src="project.js"></script>
<script>
</script>
</head>
<body>
<h1>some project — javascript & html tests</h1>
<hr />
<p>
testing 123
</p>
</body>
</html>
So che ci sono .prependChild()
, .appendChild()
, .innerHTML
, etc, proprietà e metodi, ma quello che sto cercando è come aggiungere (append) il contenuto dopo la </body>
chiusura tag?
Ho bisogno di questo, senza usare jQuery — è possibile?
Penso che la maggior parte dei browser non consente di creare un DOM non valido tramite le funzioni DOM. ('html' può contenere solo 1' head' e 1 'body' e commentare i nodi.Nient'altro.) – Roman
quindi intendendo .. se voglio aggiungere qualcosa' after body' dovrei solo aggiungere il genitore: 'html tag? –
@ZlatanO. Cosa vuoi aggiungere ?! –