-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexe003.html
48 lines (44 loc) · 1.91 KB
/
exe003.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Somando Números</title>
<style>
body {
font: normal 13pt Arial;
}
input {
font: normal 13pt Arial;
width: 100px;
}
div#resultado {
margin-top: 20px;
}
</style>
</head>
<body>
<h1>Somando Valores</h1>
<input type="number" name="txtn1" id="txtn1"> +
<input type="number" name="txtn2" id="txtn2">
<input type="button" value="Somar" onclick="somar()"> <!-- É adicionado na página o input com o comando 'onclick' que recebe a ação 'somar' -->
<div id="resultado">Resultado</div>
<script>
// Declaração da função somar.
function somar() {
let caixa1 = window.document.getElementById('txtn1'); // Variável que recebe/pega o primeiro input pelo ID.
let caixa2 = window.document.querySelector('input#txtn2'); // Variável que recebe/pega o segundo input pelo ID.
let resultado = window.document.querySelector('div#resultado'); // Variável que recebe/pega o div pelo ID.
let valorN1 = Number(caixa1.value); // Variável que converte String para Number e recebe o valor da variável 'caixa1'.
let valorN2 = Number(caixa2.value); // Mesma coisa da variável acima.
let soma = valorN1 + valorN2;
resultado.innerHTML = `A soma entre ${valorN1} e ${valorN2} é igual a: <strong>${soma}</strong>`; // O texto da variável 'resultado' recebe uma nova atribuição.
/*
Também pode ser usado o seguinte método de concatenação:
resultado.innerHTML = 'A soma entre ' + valorN1 + ' e ' + valorN2 = ' é igual a: ' + soma;
*/
}
</script>
</body>
</html>