lyspære conditionals
This commit is contained in:
parent
49cf225a2e
commit
9929d0349f
2 changed files with 74 additions and 0 deletions
43
intro_js/kjøpe_øl.html
Normal file
43
intro_js/kjøpe_øl.html
Normal file
|
@ -0,0 +1,43 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Mannen var ute etter øl</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div>
|
||||
Alder: <br>
|
||||
<input id="age" onchange="checkIfCanBuyBeer()">
|
||||
Ser ut som alder: <br>
|
||||
<input id="looksAge" onchange="checkIfCanBuyBeer()" type="slider">
|
||||
Har id:
|
||||
<input id="hasId" onchange="checkIfCanBuyBeer()" type="checkbox">
|
||||
</div>
|
||||
<div id="info">
|
||||
|
||||
</div>
|
||||
<script>
|
||||
|
||||
|
||||
checkIfCanBuyBeer();
|
||||
function checkIfCanBuyBeer() {
|
||||
let age = document.getElementById('age').valueAsNumber;
|
||||
let looksAge = document.getElementById('looksAge').valueAsNumber;
|
||||
let hasId = document.getElementById('hasId').checked;
|
||||
let canBuyBeer = false;
|
||||
|
||||
if (looksAge >= 25) {
|
||||
|
||||
} else {
|
||||
if (hasId){}
|
||||
|
||||
}
|
||||
|
||||
};
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue