Good evening, I have been trying to calculate several fields in% with% validating if they are with values, I already did something similar in javascript
, but realized that it does not work the way I imagined in javaSE
. Basically what I want is to calculate 10 fields, validating if they are with values, and if they are not the same is ignored
Code of what I've tried to do
// Calcula total da nota
function calcularTotalNota()
{
// Campos
var valorPrimeiroProduto = document.getElementById("total1").value;
var valorSegundoProduto = document.getElementById("total2").value;
var valorTerceiroProduto = document.getElementById("total3").value;
var valorQuartoProduto = document.getElementById("total4").value;
var valorQuintoProduto = document.getElementById("total5").value;
var valorSextoProduto = document.getElementById("total6").value;
var valorSetimoProduto = document.getElementById("total7").value;
var valorOitavoProduto = document.getElementById("total8").value;
var valorNonoProduto = document.getElementById("total9").value;
var valorDecimoProduto = document.getElementById("total10").value;
var totaNota = document.getElementById("totalNota").value;
// Calcula todos os campos
if(!valorPrimeiroProduto == null)
{
totaNota += valorPrimeiroProduto;
}
}
The result should be shown in javascript