[Fecha publicación 15-02-2017]
- Dos cajas de texto en la cuales debe ir un número en c/u. Mediante el function los dos números tienen que sumarse, restarse o multiplicarse entre si y mostrar la respuesta el una tercera caja de texto.
<html> |
| <head><title></title> |
| <script> |
| function sumar(){ |
| var a= parseInt(document.getElementById("a").value); |
| var b= parseInt(document.getElementById("b").value); |
| alert(a+b); |
| document.getElementById("rta").value=a+b; |
|
|
| } |
| function multi(){ |
| var a= parseInt(document.getElementById("a").value); |
| var b= parseInt(document.getElementById("b").value); |
| alert(a*b); |
| document.getElementById("rta").value=a*b; |
|
|
| } |
| function resta(){ |
| var a= parseInt(document.getElementById("a").value); |
| var b= parseInt(document.getElementById("b").value); |
| alert(a-b); |
| document.getElementById("rta").value=a-b; |
|
|
| } |
| </script> |
| </head> |
| <body> |
| A:<input type="text" id="a"><br> |
| B:<input type="text" id="b"><br> |
| RTA:<input type="text" id="rta" readonly><br> |
| <input type="button" value="Sumar" onclick="sumar();"><br> |
| <input type="button" value="Multiplicación" onclick="multi();"> |
| <input type="button" value="Resta" onclick="resta();"> |
| </body> |
| </html> |
No hay comentarios:
Publicar un comentario