Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta charset="utf-8" />
  4. </head>
  5. <body>
  6. <input type="text" id="liczba">
  7. <button onclick="sprawdz()">Sprawdź</button>
  8. <div id="wynik"></div>
  9.  
  10. <script>
  11. function sprawdz() {
  12. var liczba = document.getElementById("liczba").value;
  13. var wynik = document.getElementById("wynik");
  14. if (isNaN(liczba)) {
  15. wynik.innerHTML = "To nie jest liczba!";
  16. } else {
  17. wynik.innerHTML = "To jest liczba!";
  18. }
  19. }
  20. </script>
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement