Advertisement
Guest User

Untitled

a guest
Feb 27th, 2020
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <script type="text/javascript">
  2.  
  3. function oblicz() {
  4.  
  5. var ile=document.getElementById("numer").value;
  6. var stan=document.getElementById("czek").checked;
  7. var koszt=0;
  8.  
  9. if (stan==true && ile<=50)
  10. {
  11. koszt=ile*1.80;
  12. }
  13. else
  14. {
  15. if (stan==true && ile>50)
  16. {
  17. koszt=ile*0.80;
  18. }
  19. else
  20. {
  21. if (stan==false && ile<=50)
  22. {
  23. koszt=ile*2;
  24. }
  25. else
  26. {
  27. if (stan==false && ile>50)
  28. {
  29. koszt=ile*1;
  30. }
  31. }
  32. }
  33. }
  34.  
  35. document.getElementById("tutaj").innerHTML="Koszt ogłoszeń: "+koszt+"PLN";
  36. }
  37.  
  38. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement