Advertisement
programusy

Untitled

Apr 18th, 2023
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pl">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>praca</title>
  6. </head>
  7. <body>
  8. <form>
  9. <input type="text" id="ilgos">ilość gości</input>
  10. <br>
  11. <input type="checkbox" id="popr"></input>
  12. <button onclick="Function()">Przycisk</button>
  13. </form>
  14.  
  15. <script>
  16. var checkbox = document.getElementById("popr");
  17. function Function(){
  18. if (checkbox.check == true){
  19. console.log(document.getElementById("ilgos").value);
  20. };
  21. };
  22. </script>
  23.  
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement