-
Notifications
You must be signed in to change notification settings - Fork 229
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (49 loc) · 1.08 KB
/
index.html
File metadata and controls
62 lines (49 loc) · 1.08 KB
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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<style>
.selected {
background: #0f0;
}
li {
cursor: pointer;
}
</style>
</head>
<body>
Haz click en un elemento de la lista para seleccionarlo
<br>
<ul id="ul">
<li>Christopher Robin</li>
<li>Winnie-the-Pooh</li>
<li>Tigger</li>
<li>Kanga</li>
<li>Rabbit. Just rabbit.</li>
</ul>
<script>
ul.onclick = function(event) {
if (event.target.tagName != "LI") return;
if (event.ctrlKey || event.metaKey) {
toggleSelect(event.target);
} else {
singleSelect(event.target);
}
}
// evitando la selección innecesaria de elementos de la lista en los clics
ul.onmousedown = function() {
return false;
};
function toggleSelect(li) {
li.classList.toggle('selected');
}
function singleSelect(li) {
let selected = ul.querySelectorAll('.selected');
for(let elem of selected) {
elem.classList.remove('selected');
}
li.classList.add('selected');
}
</script>
</body>
</html>