1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-15 23:35:34 +00:00

[assert] element.checked

This commit is contained in:
Witold Filipczyk 2024-04-12 16:57:20 +02:00
parent b9428b846c
commit 274b832fa6

View File

@ -0,0 +1,31 @@
<!DOCTYPE html>
<html>
<body>
<h1>The input checked attribute</h1>
<form action="" method="get">
<input type="checkbox" name="vehicle1" value="Bike">
<label for="vehicle1"> I have a bike</label><br>
<input type="checkbox" name="vehicle2" value="Car">
<label for="vehicle2"> I have a car</label><br>
<input id="boat" type="checkbox" name="vehicle3" value="Boat" checked>
<label for="vehicle3"> I have a boat</label><br><br>
<input type="submit" value="Submit">
</form>
<script>
function ch()
{
console.assert(document.getElementById('boat').checked, 'checked true');
}
console.error('element.checked.html');
ch();
console.exit(0);
</script>
<button onclick="ch();">CLICK</button>
</body>
</html>