Advertisement
jamboljack

JS isi Nilai Skor

Jan 14th, 2019
386
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. $('.score').on('keyup',function() {
  2.     var skor  = $(this).val();
  3.     if (isNaN(skor)) { skor=0 }
  4.     if (skor > 5) {
  5.         alert("Skor Maksimal 5.");
  6.     }
  7.     var bobot = $(this).parents('tr').find('.bobot').val();
  8.     if (isNaN(bobot)) { bobot=0 }
  9.     var total = (bobot*parseInt(skor));
  10.     $(this).parents('tr').find('.total').val(total);
  11. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement