35 lines
795 B
HTML
35 lines
795 B
HTML
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<title>autocomplete</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<input autocomplete="off" autofocus placeholder="Query" type="text">
|
|
|
|
<ul></ul>
|
|
|
|
<script src="large.js"></script>
|
|
<script>
|
|
|
|
let input = document.querySelector('input');
|
|
input.addEventListener('keyup', function(event) {
|
|
let html = '';
|
|
if (input.value) {
|
|
for (word of WORDS) {
|
|
if (word.startsWith(input.value)) {
|
|
html += `<li>${word}</li>`;
|
|
}
|
|
}
|
|
}
|
|
document.querySelector('ul').innerHTML = html;
|
|
});
|
|
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|