Tengo dos "input radio" con cada uno un valor numerico y despues tengo un "input text" y quiero que me sume "input text + input radio" y el resultado salga en un input text.
Lo he intenado pero no me ha acabo de salir
| ||||
Hola deccweb Prueba este ejemplo: Código HTML: <html> <head> <title>Untitled</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <script> function sumar(frm) { tot=0; tot+=frm.ra[0].checked ? parseInt(frm.ra[0].value) : 0; tot+=frm.ra[1].checked ? parseInt(frm.ra[1].value) : 0; tot+=parseInt(frm.txt.value); frm.total.value=tot; } </script> </head> <body> <form> <input type="radio" name="ra" value="15" /> <input type="radio" name="ra" value="70" /> <input type="text" name="txt" /> <input type="text" name="total" /> <input type="button" onclick="sumar(this.form)" /> </form> </body> </html> |