Advertisement
Viky__9

bottone cambia

Jun 17th, 2021
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Document</title>
  7. </head>
  8. <body>
  9.     <button id="bottone" style="background-color: aliceblue;" onclick="cambiaTesto()">Cambio
  10.     </button>
  11.  
  12.     <script>
  13.         function cambiaTesto(){
  14.             document.getElementById("bottone").innerHTML="Ciao";
  15.         }
  16.     </script>
  17.    
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement