Código HTML:
onclick="javascript: document.getElementById('neto').value = document.getElementById('valor1').value+document.getElementById('cantidad1').value;"
??¿?¿?¿? no entiendo !! jiji
muchas Gracias.-
Pablo Araya.-
| ||||
Re: sumar valores por ID Hola BLAH !! Recuerda que el value es una cadena, tienes que pasarlo a número
Código:
Si vas a manejar números decimales, tienes que utilziar parseFloatdocument.getElementById('neto').value = parseInt(document.getElementById('valor1').value)+... Saludos, |
| ||||
Re: sumar valores por ID como redondeo el numero decimal ??? no entendi ... no sirve un round() ??? javascript: document.getElementById('iva').value = parseFloat(document.getElementById('totaly').value * 1.19 - parseInt(document.getElementById('totaly').value)) ; ??? asi no me funciona
__________________ Adios ...!!!! |