Index.html:
<!DOCTYPE html>
<html lang="en">
<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>Document</title>
</head>
<body>
<script src="script.js" defer></script>
<h1></h1>
<p>
<label for="quantidade">Quantidade:</label>
<input name="quantidade" id="quantidade" type="text" />
</p>
<p>
<label for="valor">Valor: </label>
<input name="valor" id="valor" type="text" />
</p>
<div>
<button onclick="calcular()" id="desconto">Calcular o Desconto</button>
</div>
</body>
</html>
script.js:
let texto = document.querySelector('h1');
texto.innerHTML = 'Título';
function calcular() {
let quantidade = parseInt(document.getElementById('quantidade').value);
let valor = parseFloat(document.getElementById('valor').value);
let total = quantidade * valor;
if (quantidade >= 10 || valor >= 100) {
total = total - (total / 100) * 5;
alert(`Valor total: ${total} `);
reiniciar()
} else {
alert('Não tem desconto')
reiniciar()
}
}
function reiniciar() {
quantidade.value = '';
valor.value = '';
}
É recomendado alterar a function resetar para
function reiniciar() {
document.getElementById('quantidade').value = '';
document.getElementById('valor').value = '';
}
Mas como eu fiz uma label, parece que não foi necessário. Alguém poderia me explicar a diferença?