Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <div id="div1">
- <p id="p1">Questo è il primo paragrafo</p>
- <p id="p2">Questo è il secondo paragrafo</p>
- <button>ELIMINA</button>
- <button id="btn">CAMBIA PARAGRAFO</button>
- </div>
- <script>
- const nuovo_p = document.createElement("p");
- nuovo_p.textContent="Nuovo paragrafo";
- nuovo_p.id="pNuovoAfterEnd";
- const dopo_questo = document.getElementById("div1");
- dopo_questo.insertAdjacentElement("afterbegin", nuovo_p);
- document.getElementById("p1").insertAdjacentHTML("afterbegin", "<b>MODIFICATO</b>");
- document.querySelector("button")
- .addEventListener("click", function () {
- document.querySelector("b").remove();
- });
- document.getElementById("btn")
- .addEventListener("click", function () {
- const da_spostare = document.querySelector("b");
- document.getElementById("p2").insertAdjacentElement("afterbegin", da_spostare);
- });
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement