-
Notifications
You must be signed in to change notification settings - Fork 1
/
selectableList.html
59 lines (52 loc) · 1.3 KB
/
selectableList.html
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
<!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>
<style>
.selected {
background: #0f0;
}
li {
cursor: pointer;
}
</style>
</head>
<body>
선택하고자 하는 요소를 클릭하세요.
<br />
<ul id="ul">
<li>React</li>
<li>Angular</li>
<li>Vue</li>
<li>Svelte</li>
<li>Blazor</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);
}
};
// 요소를 클릭할 때 불필요하게 선택되지 않도록 방지
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>