Advertisement
Guest User

Untitled

a guest
Dec 13th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <html>
  2. <head>
  3. </head>
  4. <body>
  5.  
  6. <p id="a">Podaj liczby z ktorych chcesz uzyskac przedzial:</p>
  7. <input type="text" id="pierwsza"/>Pierwsza liczba</br>
  8. <input type="text" id="druga"/>Druga liczba</br>
  9.  
  10. <input type="radio" name="dzialanie" id="dod">Dodawanie<br>
  11. <input type="radio" name="dzialanie" id="ode">Odejmowanie<br>
  12. <input type="radio" name="dzialanie" id="mno">Mnożenie<br>
  13. <input type="radio" name="dzialanie" id="dzi">Dzielenie<br>
  14. <button id="b">Oblicz</button>
  15. <script>
  16. var b=document.getElementById("b");
  17. var pierwsza=document.getElementById('pierwsza');
  18. var druga=document.getElementById('druga');
  19.  
  20. b.onclick=funkcja;
  21. function funkcja()
  22. {
  23. var pierwsza=document.write('pierwsza');
  24. }
  25.  
  26.  
  27. </script>
  28.  
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement