Advertisement
Guest User

rudy_pedal_Cwel

a guest
Jan 17th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>funkcje js</title>
  5. <meta charset="utf-8" />
  6. </head>
  7. <body>
  8.  
  9. <script>
  10. function licz(formularz)
  11. {
  12. if (formularz.a.value=='' || formularz.b.value=='') alert ('Wprowadź dane'); else
  13. {
  14. a=formularz.a.value;
  15. b=formularz.b.value;
  16. a=formularz.a.value;
  17. formularz.p.value=a*b;
  18. formularz.o.value=2*a+2*b;
  19. }
  20. }
  21. </script>
  22.  
  23. <form name="form1" action="">
  24. Podaj bok a: <input type="text" name="a"><br><br>
  25. Podaj bok b: <input type="text" name="b"><br><br>
  26. <input type="button" value="Oblicz" onClick="licz(this.form)"><br><br>
  27. Pole prostokąta: <input type="text" name="p"><br><br>
  28. Obwód prostokąta: <input type="text" name="o">
  29. </form>
  30. </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement