dithph

perkalian

Jan 15th, 2017
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. <html>
  2. <script type="text/javascript">
  3.  
  4. function sum() {
  5. var hargaa = document.getElementById('harga').value;
  6. var unit = document.getElementById('jumlah_unit').value;
  7. var waktu = document.getElementById('jumlah_waktu').value;
  8. var total = parseInt(hargaa) * parseInt(unit) + parseInt(waktu);
  9. if (!isNaN(total)) {
  10. document.getElementById('total').value = total;
  11. };
  12. //document.getElementById('total').value = fullTotal;
  13. }
  14.  
  15. </script>
  16. <head>
  17. <title>bisa</title>
  18. </head>
  19. <body>
  20.  
  21.  
  22. <h2>TEST</h2>
  23.  
  24.  
  25. harga <input type="text" id="harga" onkeyup="sum();"><br>
  26. jumlah unit <input type="number" id="jumlah_unit" onkeyup="sum();"><br>
  27. jumlah waktu <input type="number" id="jumlah_waktu" onkeyup="sum();"><br>
  28. total <input type="text" id="total">
  29.  
  30. </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment