Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Kalkulator - JS</title>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. </head>
  8. <body>
  9. <input type="text" id="ekran" readonly="readonly"/>
  10. <input type="text" id="prviBroj" hidden="hidden"/>
  11. <input type="text" id="operand" hidden="hidden"/>
  12. <br />
  13.  
  14. <input type="button" value="7" onclick="dodajBroj(7)"/>
  15. <input type="button" value="8" onclick="dodajBroj(8)"/>
  16. <input type="button" value="9" onclick="dodajBroj(9)"/>
  17. <input type="button" value="+" onclick="operacija('+')"/>
  18. <br />
  19. <input type="button" value="4" onclick="dodajBroj(4)"/>
  20. <input type="button" value="5" onclick="dodajBroj(5)"/>
  21. <input type="button" value="6" onclick="dodajBroj(6)"/>
  22. <input type="button" value="-" onclick="operacija('-')"/>
  23. <br />
  24. <input type="button" value="1" onclick="dodajBroj(1)"/>
  25. <input type="button" value="2" onclick="dodajBroj(2)"/>
  26. <input type="button" value="3" onclick="dodajBroj(3)"/>
  27. <input type="button" value="*" onclick="operacija('*')"/>
  28. <br />
  29. <input type="button" value="0" onclick="dodajBroj(0)"/>
  30. <input type="button" value="C"/>
  31. <input type="button" value="="/>
  32. <input type="button" value="/" onclick="operacija('/')"/>
  33.  
  34. <script>
  35. function dodajBroj(broj){
  36. document.getElementById("ekran").value += broj;
  37. }
  38. function operacija(operand){
  39. document.getElementById('prviBroj').value= document.getElementById('ekran').value;
  40.  
  41. document.getElementById('operand').value=operand;
  42. document.getElementById('ekran').value="";
  43. }
  44. function izracunaj
  45. </script>
  46.  
  47. </body>
  48. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement