-
Notifications
You must be signed in to change notification settings - Fork 0
/
teste.html
42 lines (33 loc) · 985 Bytes
/
teste.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
<html>
<head>
<script>
var numero1
var numero2
var resultado
/*function soma(){
numero1 = document.getElementById('n1').value;
numero2 = document.getElementById('n2').value;
resultado = document.getElementById('resultado').value = (Number(numero1) + Number(numero2))
}*/
var tricipital, subescapular, axilarMedia, peitoral, supraIliaca, abdomen, coxa, perna;
var sexo = document.getElementById('sexo').value
function percentualGordura(){
tricipital = document.getElementsByName('tricipital').value
subescapular
axilarMedia
peitoral
supraIliaca
abdomen
coxa
perna
if sexo == "MASCULINO"{
}
}
</script>
</head>
<body>
<input type="number" onchange="soma()" id="n1">
<input type="number" onchange="soma()" id="n2">
<input type="text" id="resultado">
</body>
</html>