Buenas, tengo el siguiente script
Código Javascript
:
Ver originalfunction contar(){
var precio_unitario = document.getElementById('cantidad_1');
var cantidad = document.getElementById('preciou_1');
var importe = document.getElementById('importe_1');
var iva_concepto = document.getElementById('exceder_iva_1');
alert(precio_unitario.value);
alert(cantidad.value);
alert(importe.value);
alert(iva_concepto.value);
//alert("Hay " + precio_unitario.length + " elementos con el nombre 'opción1'");
for (x=0;x<precio_unitario.value.length;x++){
importe[x].value=precio_unitario[x].value*cantidad[x].value;
iva_concepto[x].value=importe[x].value*16/100;
texto = precio_unitario[x].value + cantidad[x].value + importe[x].value + "\n";
//alert("Se han encontrado los siguientes valores en elementos 'opcion1'\n" + texto);
}
}
Donde...
cantidad_1
preciou_1
etc, son campos los IDs de campos de texto, el detalle es que no me corre el codigo con el getElementById, pero funciona perfecto con el getElementsByName