/ Published in: JavaScript
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<HTML> <head> <title>Mi calculadora javascript</title> <script type="text/javascript"> var glo_numero; function sumeme(){ var numero1,numero2; alert("El numero 1 es " +document.getElementById("numero1").value); alert("El numero 2 es " +document.getElementById("numero2").value); numero1=parseInt(document.getElementById("numero1").value); numero2=parseInt(document.getElementById("numero2").value); alert("La suma es " + (numero1+numero2)); } </script> </head> <body> Numero 1: <input type="text" name="numero1" id="numero1" /> <br /> Numero 2: <input type="text" name="numero2" id="numero2" /> <input type="button" name="sumar" value="sumar" onclick="sumeme();" /> </body> </HTML>