HTML/JavaScriptの部分一致検索
| 順位 | 名前 | スコア | 称号 | 打鍵/秒 | 正誤率 | 時間(秒) | 打鍵数 | ミス | 問題 | 日付 |
|---|---|---|---|---|---|---|---|---|---|---|
| 1 | mikaroko | 2082 | F+ | 2.1 | 97.6% | 275.6 | 588 | 14 | 28 | 2025/12/16 |
関連タイピング
-
何秒で全部打てるか挑戦してみよう!
プレイ回数434万短文かな298打 -
みんなで歴史の復習だ!
プレイ回数257218打 -
全部知ってる!?日本の名城タイピング!
プレイ回数7万かな60秒 -
5分間の速度部門の模擬試験です。打つ速度で級が決まります
プレイ回数92万長文300秒 -
学校やパソコン初心者におすすめです
プレイ回数3.8万短文かな648打 -
初心者におすすめの単語タイピングです
プレイ回数2134短文かな140打 -
「自愛を願う挨拶」を口ずさみながら、タイピングを楽しみましょう。
プレイ回数790長文かな357打 -
速ければ速いほど強い世界
プレイ回数791万短文かな87打
問題文
(<body>)
<body>
(<h1>ぶぶんいっちけんさくさいと さんぷる</h1>)
<h1>部分一致検索サイト サンプル</h1>
(<label for=”search”>けんさく:</label>)
<label for="search">検索:</label>
(<input type=”text” id=”search” name=)
<input type="text" id="search" name=
(”search” onkeyup=”searchimages()”)
"search" onkeyup="searchImages()"
(placeholder=”ぶぶんいっちけんさく”>)
placeholder="部分一致検索">
(</div>)
</div>
(<div class=”container”>)
<div class="container">
(<a href=”#”>1111<img src=”img1.jpg”)
<a href="#">1111<img src="img1.jpg"
(alt=”がぞう5”></a>)
alt="画像5"></a>
(</div>)
</div>
(<script>)
<script>
(function searchimages() {)
function searchImages() {
(let input = document.getelementbyid()
let input = document.getElementById(
(”search”).value;)
"search").value;
(let images =)
let images =
(document.getelementsbytagname(”img”))
document.getElementsByTagName("img")
(;)
;
(for (let i = 0; i < images.length;)
for (let i = 0; i < images.length;
(i++) {)
i++) {
(if (images[i].alt.includes(input)) {)
if (images[i].alt.includes(input)) {
(images[i].parentnode.style.display =)
images[i].parentNode.style.display =
(”block”;)
"block";
(} else {)
} else {
(images[i].parentnode.style.display =)
images[i].parentNode.style.display =
(}}})
}}}
(</script>)
</script>
(</body>)
</body>