jda_m06/uf01/Exercicis UF1_2. Solucions-20211106/objects.ex19.setInterval.html
2022-02-16 16:13:08 +01:00

29 lines
679 B
HTML
Executable file

<!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>
<p id="clock"></p>
<button onclick="stopClock()">Atura rellotge</button>
<script>
function stopClock() {
clearInterval(timer);
}
function runClock() {
let dt = new Date();
document.getElementById("clock").innerHTML = dt.toLocaleTimeString();
}
let timer = setInterval(runClock, 1000);
</script>
</body>
</html>