Muchas gracias por sus aportes y soluciones, lo he solucionado de esta manera
Código Javascript
:
Ver originaldocument.getElementById('cant'+indice).value;
Ahora necesito que me ayuden a incrementar una variable despues de que una funcion se haya ejecutado:
Código Javascript
:
Ver originalfunction agregar()
{
var indice = 0;
if(document.form.referencia.value != "" && document.form.cantidad.value != "" && document.form.descripcion.value != "" && document.form.valor.value != "" &&document.form.descuento.value != ""){
document.getElementById('cant'+indice).style.display = 'inherit';
document.getElementById('refeprod'+indice).style.display = 'inherit';
document.getElementById('desc'+indice).style.display = 'inherit';
document.getElementById('valor'+indice).style.display = 'inherit';
document.getElementById('valortotal'+indice).style.display = 'inherit';
document.getElementById('cant'+indice).value = document.form.cantidad.value;
document.getElementById('refeprod'+indice).value = document.form.referencia.value;
document.getElementById('desc'+indice).value = document.form.descripcion.value;
document.getElementById('valor'+indice).value = document.form.valor.value;
cantidad = document.form.cantidad.value;
descuento = (document.form.descuento.value/100);
valor = document.form.valor.value;
porcentaje = valor * descuento;
valor_parcial = valor - porcentaje;
valor_final = cantidad * valor_parcial;
document.getElementById('valortotal'+indice).value = valor_final;
document.form.cantidad.value = "";
document.form.referencia.value = "";
document.form.descripcion.value = "";
document.form.valor.value = "";
document.form.descuento.value = defaultValue;
}else{
alert('Complete todos los campos antes de agregar el producto a la factura');
}
}
Al ejecutarse esa funcion necesito que la variable indice se incremente he hecho esto:
Código Javascript
:
Ver originalfunction incrementar()
{
indice++;
}
En el boton tengo
Código Javascript
:
Ver originalonclick="agregar();incrementar();"
Pero la variable indice no se icrementa, por favor solo falta eso para continuar con mi proyecto ¿Como lo hago?