-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathex5_lista11.html
49 lines (34 loc) · 1.08 KB
/
ex5_lista11.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
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bairro</title>
</head>
<body>
<input type="text" id="in_filme">
<button onclick="CadastrarFilme()">Cadastrar Filme</button>
<button onclick="VerFavoritos()">Ver Favoritos</button>
<br>
Seu filme favorito:<span id="span_filme_favorito"></span>
<br>
<br>
Seu 3° filme favorito:<span id="span_terceiro_filme_favorito"></span>
<br>
<br>
Todos os filmes cadastrados:<span id="span_todos_filmes"></span>
</body>
</html>
<script>
listaFilmes = []
function CadastrarFilme() {
listaFilmes.push(in_filme.value)
span_filme_favorito.innerHTML = listaFilmes[0]
if (listaFilmes.length < 3) {
span_terceiro_filme_favorito.innerHTML = `Ainda não existe`
} else {
span_terceiro_filme_favorito.innerHTML = `${listaFilmes[2]}`
}
span_todos_filmes.innerHTML = `Total de filmes cadastrados: ${listaFilmes.length}`
}
</script>