Guest User

Untitled

a guest
Nov 25th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>bingo.html</title>
  6. </head>
  7. <body>
  8. <input type="text" id="numero">
  9. <input type="submit" id="verificar" value="Adicione e verifique no Bingo!">
  10.  
  11. <script>
  12. var numero = document.getElementById("numero").value;
  13.  
  14. function printNumero() {
  15. var numero = document.getElementById("numero").value;
  16. return numero;
  17. };
  18.  
  19. var verificar = document.getElementById("verificar");
  20. verificar.addEventListener("click", function() {
  21. console.log(numero);
  22. });
  23. </script>
  24. </body>
  25. </html>
Add Comment
Please, Sign In to add comment