Ver Mensaje Individual
  #1 (permalink)  
Antiguo 19/12/2010, 06:36
roser24
 
Fecha de Ingreso: marzo-2010
Mensajes: 127
Antigüedad: 14 años, 8 meses
Puntos: 2
Pregunta sumar 2 numeros en JS

Hola,soy principiante y no se que estare haciendo mal..
mi codigo es el siguiente:
Código Javascript:
Ver original
  1. <html>
  2. <head>
  3. <script language='javascript'>
  4. function fsuma(){
  5.  n1=document.f1.num1.value;
  6.  n2=document.f1.num2.value;
  7. res=document.f1.resul.value;
  8. res=parseInt(n1)+parseInt(n2);
  9. document.f1.resul.value=res;
  10.  
  11. }
  12. </script>
  13. </head>
  14. <body>
  15. <form name=f1 action="ejercicio1.html" method=POST>
  16. <label name=lblnum1>Numero 1:</label><input type=text name=num1>
  17. <label name=lblnum2>Numero 2:</label><input type=text name=num2>
  18. <input type=button value="   +   ",onclick="fsuma()">
  19.  
  20. <input type=text name=resul>
  21. </form>
  22. </body>
  23. </html>

deberia de mostrarlme en resul el resultado de la suma pero no lo hace...si me podeis hechar un cable os lo agradeceria muuxo.

Salu2