Advertisement
Guest User

Untitled

a guest
May 19th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Tutorial de Alert em JavaScript - Linha de Código</title>
  4. </head>
  5. <body>
  6.  
  7. <p>Clique para exibir.</p>
  8.  
  9. <button onclick="myFunction()">Clique aqui</button>
  10.  
  11. <p id="demo"></p>
  12.  
  13. <script>
  14. function myFunction()
  15. {
  16. var x;
  17.  
  18. var idade=prompt("Digite sua idade:");
  19.  
  20. if (idade!=null)
  21. {
  22. x="Idade: " + idade + " anos.";
  23. document.getElementById("demo").innerHTML=x;
  24. }
  25. }
  26. </script>
  27.  
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement