前提・実現したいこと
全くの初心者でタイピングゲームが作くろうとおもいたち、とりあえずキーボードっぽいやつを HTML で作成(ただ button を並べただけ)。
次に押された key と同じ button の style を変えようと思いました。
発生している問題・エラーメッセージ
押された key と同じ文字の button を取得する方法がわかりません。
該当のソースコード
html
1 <div class="button-list"> 2 <button type="button" class="btn btn-outline-light mt-3">1</button> 3 <button type="button" class="btn btn-outline-light mt-3">2</button> 4 <button type="button" class="btn btn-outline-light mt-3">3</button> 5 <button type="button" class="btn btn-outline-light mt-3">4</button> 6 <button type="button" class="btn btn-outline-light mt-3">5</button> 7 <button type="button" class="btn btn-outline-light mt-3">6</button> 8 <button type="button" class="btn btn-outline-light mt-3">7</button> 9 <button type="button" class="btn btn-outline-light mt-3">8</button> 10 <button type="button" class="btn btn-outline-light mt-3">9</button> 11 <button type="button" class="btn btn-outline-light mt-3">0</button> 12 <button type="button" class="btn btn-outline-light mt-3">-</button> 13 <button type="button" class="btn btn-outline-light mt-3">^</button> 14 <button type="button" class="btn btn-outline-light mt-3">\</button> 15 <button type="button" class="btn btn-outline-light mt-3">Q</button> 16 <button type="button" class="btn btn-outline-light mt-3">W</button> 17 <button type="button" class="btn btn-outline-light mt-3">E</button> 18 <button type="button" class="btn btn-outline-light mt-3">R</button> 19 <button type="button" class="btn btn-outline-light mt-3">T</button> 20 <button type="button" class="btn btn-outline-light mt-3">Y</button> 21 <button type="button" class="btn btn-outline-light mt-3">U</button> 22 <button type="button" class="btn btn-outline-light mt-3">I</button> 23 <button type="button" class="btn btn-outline-light mt-3">O</button> 24 <button type="button" class="btn btn-outline-light mt-3">P</button> 25 <button type="button" class="btn btn-outline-light mt-3">@</button> 26 <button type="button" class="btn btn-outline-light mt-3">[</button> 27 <button type="button" class="btn btn-outline-light mt-3">A</button> 28 <button type="button" class="btn btn-outline-light mt-3">S</button> 29 <button type="button" class="btn btn-outline-light mt-3">D</button> 30 <button type="button" class="btn btn-outline-light mt-3">F</button> 31 <button type="button" class="btn btn-outline-light mt-3">G</button> 32 <button type="button" class="btn btn-outline-light mt-3">H</button> 33 <button type="button" class="btn btn-outline-light mt-3">J</button> 34 <button type="button" class="btn btn-outline-light mt-3">K</button> 35 <button type="button" class="btn btn-outline-light mt-3">L</button> 36 <button type="button" class="btn btn-outline-light mt-3">;</button> 37 <button type="button" class="btn btn-outline-light mt-3">:</button> 38 <button type="button" class="btn btn-outline-light mt-3">]</button> 39 <button type="button" class="btn btn-outline-light mt-3">Z</button> 40 <button type="button" class="btn btn-outline-light mt-3">X</button> 41 <button type="button" class="btn btn-outline-light mt-3">C</button> 42 <button type="button" class="btn btn-outline-light mt-3">V</button> 43 <button type="button" class="btn btn-outline-light mt-3">B</button> 44 <button type="button" class="btn btn-outline-light mt-3">N</button> 45 <button type="button" class="btn btn-outline-light mt-3">M</button> 46 <button type="button" class="btn btn-outline-light mt-3">,</button> 47 <button type="button" class="btn btn-outline-light mt-3">.</button> 48 <button type="button" class="btn btn-outline-light mt-3">/</button> 49 <button type="button" class="btn btn-outline-light mt-3">\</button> 50 </div> 51
回答1件
あなたの回答
tips
プレビュー