Advertisement
Guest User

Untitled

a guest
Dec 13th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <body>
  2. <script>
  3.  
  4. function licz (formularz) {
  5. if (formularz.a.value==""||formularz.b.value=="");
  6. else {
  7. a=formularz.a.value;
  8. b=formularz.b.value;
  9. formularz.p.value=a * 4;
  10. formularz.o.value=b * 3;
  11. }
  12. }
  13.  
  14. if (
  15.  
  16. </script>
  17.  
  18. <form name="formularz1" action="">
  19. Waluta Euro: <input type = "text" name = "a"> <br /> <br />
  20. Waluta Dolar: <input type = "text" name = "b"> <br /> <br />
  21. <input type = "button" value = "Oblicz" onClick = "licz(this.form)"><br> <br>
  22. Kwota Euro -> Złoty: <input type = "text" name = "p"> <br /> <br />
  23. Kwota Dolar -> Złoty: <input type = "text" name = "o"> <br /> <br />
  24. </form>
  25.  
  26. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement