-
Notifications
You must be signed in to change notification settings - Fork 0
/
progetto-dom.html
64 lines (55 loc) · 1.59 KB
/
progetto-dom.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<title>Document</title>
<style>
.active {
background-color: #000;
color: #fff;
}
.btn-iscriviti{
background-color: #ccc;
border-radius: 50%;
}
</style>
</head>
<body>
<p>Bottone di iscrizione</p>
<button onclick="
iscriviti();
" class="js-button-iscrizione btn-iscriviti">Iscriviti</button>
<p>Calcolatore di spese di spedizione</p>
<input placeholder="Costo dell'ordine" class="js-costo" onkeydown="
leggiInput(event);
">
<button onclick="
calcolaTotale();
">Calcola</button>
<p class="js-costo-totale"></p>
<script>
function iscriviti() {
const buttonElement = document.querySelector('.js-button-iscrizione');
buttonElement.classList.toggle('active');
if (buttonElement.innerHTML === 'Iscriviti') {
buttonElement.innerHTML = 'Iscritto';
} else {
buttonElement.innerHTML = 'Iscriviti';
}
}
function calcolaTotale () {
const inputElement = document.querySelector('.js-costo');
let costo = Number(inputElement.value); //casting
if (costo < 40) {
costo += 10;
}
document.querySelector('.js-costo-totale').innerHTML = `€${costo}`;
inputElement.value = '';
}
function leggiInput (event) {
if (event.key === 'Enter') {
calcolaTotale();
}
}
</script>
</body>
</html>