Advertisement
Raul_julian

Simulation.js

Sep 22nd, 2015
383
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function simulation() {
  2.  
  3.   var rec = $("#Table5 tbody")[2] ;
  4.   var childrens = rec.children ;  
  5.   var total_ad = 0 ;
  6.   var total_falt = 0 ;
  7.  
  8.   for(var i = 2; i < childrens.length; i++) {
  9.  
  10.     console.log("i: " + i);
  11.     var filho_do_vento = childrens[i].children ;
  12.  
  13.     var group_query = filho_do_vento[0].textContent ;
  14.     var falt = prompt("Insira suas faltas em " + group_query + ": ");
  15.     var aulas_dadas = prompt("Insira as aulas dadas da matéria " + group_query + ": ");
  16.      
  17.     filho_do_vento[8].textContent = falt ;
  18.     filho_do_vento[13].textContent = parseInt(filho_do_vento[13].textContent) + parseInt(falt);
  19.     filho_do_vento[9].textContent = aulas_dadas ;
  20.     filho_do_vento[14].textContent = parseInt(filho_do_vento[14].textContent) + parseInt(aulas_dadas);
  21.    
  22.     total_ad += parseInt(filho_do_vento[14].textContent) ;
  23.     total_falt += parseInt(filho_do_vento[13].textContent);
  24.    
  25.   }
  26.    
  27.    console.warn("faltas totais: " + total_falt);
  28.    console.warn("aulas dadas: " + total_ad);
  29.    console.warn("Sua frequencia is: " + parseFloat((100 - ((total_falt * 100) / total_ad)).toString()));
  30.   }
  31.  
  32. if (!("jQuery" in window)) {
  33.         console.info("jQuery ($) not defined");
  34.         var k = document,
  35.                 c = k.createElement('script'),
  36.                 ref = k.getElementsByTagName('script')[0];
  37.         c.type = "text/javascript";
  38.         c.src = "http://code.jquery.com/jquery-1.9.1.min.js";
  39.         c.onload = function () {
  40.                 console.warn("jQuery ($) defined");
  41.                 simulation();
  42.         }
  43.         ref.parentNode.insertBefore(c, ref);
  44. }
  45. else simulation();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement