Advertisement
Guest User

kalkulaator

a guest
Nov 5th, 2016
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.39 KB | None | 0 0
  1. <html>
  2.  
  3. <!-- see on kommentaar, kommentaarid kuidagi ei mõjuta veebilehe tööd -->
  4. <!-- head block -->
  5. <head>
  6.     <title>Lehe nimetus tab-bar'is</title>
  7.     <!-- Include meta tag to ensure proper rendering and touch zooming -->
  8.     <meta name="viewport" content="width=device-width, initial-scale=1">
  9.  
  10.     <!-- Include jQuery Mobile stylesheets -->
  11.     <link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
  12.  
  13.     <!-- Include the jQuery library -->
  14.     <script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
  15.  
  16.     <!-- Include the jQuery Mobile library -->
  17.     <script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
  18. </head>
  19.  
  20. <!-- stiilide block -->
  21. <style>
  22.     img{
  23.         width: 100px;
  24.         height: auto;
  25.     }
  26. </style>
  27.  
  28. <!-- body block -->
  29. <body>
  30.  
  31.     <h3>Kalkulaator</h3>
  32.     <p>Muutuja a väärtus: <input id="a" type="text"></p>
  33.     <p>Muutuja b väärtus: <input id="b" type="text"></p>
  34.     <p>a+b=<text id="apb"></text></p>
  35.     <p>a-b=<text id="amb"></text></p>
  36.     <p>a*b=<text id="akb"></text></p>
  37.     <p>a/b=<text id="ajb"></text></p>
  38.     <button id="calculate">Calculate!</button>
  39. </body>
  40.  
  41. <script>
  42.     $("#calculate").click(
  43.         function(){
  44.             var a = parseInt($("#a").val());
  45.             var b = parseInt($("#b").val());
  46.             $("#apb").html(a+b);
  47.             $("#amb").html(a-b);
  48.             $("#akb").html(a*b);
  49.             $("#ajb").html(a/b);
  50.         }
  51.     );
  52.    
  53.    
  54. </script>
  55.  
  56. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement