-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnome_idade.html
39 lines (33 loc) · 916 Bytes
/
nome_idade.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
<!DOCTYPE html>
<html>
<head>
<title>nome e idade</title>
<script src="jquery.js"></script>
<script >
$(document).ready(function(){
var nome;
var nascimento;
var anoatual;
var anoint;
var nascint;
var idade
$("button").click(function(){
nome = $("#nome").val();
anoatual = $ ("#anoatual").val();
nascimento = $ ("#nascimento").val();
anoint = parseInt (anoatual);
nascint = parseInt (nascimento);
idade= anoint-nascint;
$("p").text(nome+": "+idade );
});
});
</script>
</head>
<body>
<input type="text" id="nome" placeholder="Insira seu nome">
<input type="text" id="nascimento" placeholder="Seu ano de nascimento">
<input type="text" id="anoatual" placeholder="Insira o ano atual">
<button>Exibir sua idade</button>
<p></p>
</body>
</html>