<html>
<head>
<title>Sumar dos Numeros En JavaScript</title>
</head>
<body>
<fieldset>
<legend>Ingrese 2 Digitos</legend>
<label for="">Numero 1:</label>
<input type="text" id="numero1">
<br><br>
<label for="">Numero 2:</label>
<input type="text" id="numero2">
<br><br>
<input type="button" onclick="Sumar();" value="Calcular"><br>
</fieldset>
</body>
<script>
function Sumar() {
var n1 = document.getElementById('numero1').value; /
var n2 = document.getElementById('numero2').value;
var suma = parseInt(n1) + parseInt(n2);
alert("La suma es: "+suma)
}
</script>
</html>
Si se desea Restar, en la parte de var suma = parseInt(n1) + parseInt(n2);
Cambiamos el + por el -
<head>
<title>Sumar dos Numeros En JavaScript</title>
</head>
<body>
<fieldset>
<legend>Ingrese 2 Digitos</legend>
<label for="">Numero 1:</label>
<input type="text" id="numero1">
<br><br>
<label for="">Numero 2:</label>
<input type="text" id="numero2">
<br><br>
<input type="button" onclick="Sumar();" value="Calcular"><br>
</fieldset>
</body>
<script>
function Sumar() {
var n1 = document.getElementById('numero1').value; /
var n2 = document.getElementById('numero2').value;
var suma = parseInt(n1) + parseInt(n2);
alert("La suma es: "+suma)
}
</script>
</html>
Si se desea Restar, en la parte de var suma = parseInt(n1) + parseInt(n2);
Cambiamos el + por el -
Comentarios
Publicar un comentario