17/04/2008, 05:09
|
| | | Fecha de Ingreso: enero-2006 Ubicación: Santiago de Chile
Mensajes: 329
Antigüedad: 19 años Puntos: 0 | |
problema javascript en firefox hola a todos
tengo el siguiente codigo
function calcular(seccion,linea)
{
var valor1 = document.getElementById('visitas_' + seccion + '_' + linea).value;
var valor2 = document.getElementById('costo_' + seccion + '_' + linea).value;
var valor3 = valor1 * valor2;
document.getElementById('total_' + seccion + ¡_¡ + linea).value=valor3;
var largo=document.getElementById("tblMovilizavion").g etElementsByTagName("tr").length-2;
// alert(largo+"");
var l, c;
var totales = 0;
for (i=1;i<=2;i++)
{
totales=0;
for (c=1;c<=largo;c++)
{
totales = totales + parseInt(document.getElementById('total_' + i + '_' + c).value);
}
document.getElementById('total_general_' + i).value = totales;
}
}
el cual me sirve en IE, pero en firefox no funciona.
¿alguien sabe como lo puedo corregir para que funcione con fierfox los calculos?
gracias |