前提・実現したいこと
今、クイズアプリを作り終わり、オリジナルとして制限時間をつけている途中なのですが、下の回答者のようにコードを書いてみたらエラーが出ました。
発生している問題・エラーメッセージ
該当のソースコード
html
1<!DOCTYPE html> 2<html lang="ja"> 3<head> 4 <meta charset="utf-8"> 5 <title>Quiz</title> 6 <link rel="stylesheet" href="css/styles.css"> 7</head> 8<body> 9 <div class="container"> 10 <p id="question"></p> 11 <ul id="choices"></ul> 12 <div id="btn" class="disabled">Next</div> 13 14 <section id="result"> 15 <p></p> 16 <a href="">Replay?</a> 17 </section> 18 </div> 19 20 <script src="js/main.js"></script> 21</body> 22</html> 23
css
1body { 2 background: #efdec1; 3 font-size: 14px; 4 font-family: Verdana, sans-serif; 5} 6 7.container { 8 width: 400px; 9 margin: 8px auto; 10 background: #fff; 11 border-radius: 4px; 12 padding: 16px; 13 position: relative; 14} 15 16#question { 17 margin-bottom: 16px; 18 font-weight: bold; 19} 20 21#choices { 22 list-style: none; 23 padding: 0; 24 margin-bottom: 16px; 25} 26 27#choices > li { 28 border: 1px solid #ccc; 29 border-radius: 4px; 30 padding: 10px; 31 margin-bottom: 10px; 32 cursor: pointer; 33} 34 35#choices > li:hover { 36 background: #f8f8f8; 37} 38 39#choices > li.correct { 40 background: #d4edda; 41 border-color: #c3e6cb; 42 color: #155724; 43 font-weight: bold; 44} 45 46#choices > li.correct::after { 47 content: " ... correct!"; 48} 49 50#choices > li.wrong { 51 background: #f8d8da; 52 border-color: #f5c6cb; 53 color: #721c24; 54 font-weight: bold; 55} 56 57#choices > li.wrong::after { 58 content: " ... wrong!"; 59} 60 61#btn, #result > a { 62 background: #3498db; 63 padding: 8px; 64 border-radius: 4px; 65 cursor: pointer; 66 text-align: center; 67 color: #fff; 68 box-shadow: 0 4px 0 #2880b9; 69} 70 71#btn.disabled { 72 background: #ccc; 73 box-shadow: 0 4px 0 #bbb; 74 opacity: 0.7; 75} 76 77#result { 78 position: absolute; 79 width: 300px; 80 background: #fff; 81 padding: 30px; 82 box-shadow: 0 0 2px rgba(0, 0, 0, 0.5); 83 /* top: 50px; */ 84 top: -500px; 85 left: 0; 86 right: 0; 87 margin: 0 auto; 88 border-radius: 3px; 89 text-align: center; 90 transition: 0.4s ease-out; 91} 92 93#result.show { 94 top: 50px; 95} 96 97#result > p { 98 font-size: 24px; 99} 100 101#result > a { 102 display: block; 103 text-decoration: none; 104} 105
js
1'use strict'; 2 3{ 4 const question = document.getElementById('question'); 5 const btn = document.getElementById('btn'); 6 const choices = document.getElementById('choices'); 7 const result = document.getElementById('result'); 8 const scoreLabel = document.querySelector('#result > p'); 9 10 const quizSet = [ 11 // {q: 'What is A?', c: ['A0', 'A1', 'A2']}, 12 // {q: 'What is B?', c: ['B0', 'B1', 'B2']}, 13 // {q: 'What is C?', c: ['C0', 'C1', 'C2']}, 14 {q: '世界で一番大きな湖は?', c: ['カスピ海', 'カリブ海', '琵琶湖']}, 15 {q: '2の8乗は?', c: ['256', '64', '1024']}, 16 {q: 'いま、何問目?', c: ['3問目', '4問目', '5問目']}, 17 ]; 18 let currentNum = 0; 19 let isAnswered; 20 let score = 0; 21 22 function shuffle(arr) { 23 for (let i = arr.length - 1; i > 0; i--) { 24 const j = Math.floor(Math.random() * (i + 1)); 25 [arr[j], arr[i]] = [arr[i], arr[j]]; 26 } 27 return arr; 28 } 29 30 function checkAnswer(li) { 31 if (isAnswered) { 32 return; 33 } 34 isAnswered = true; 35 36 if (li.textContent === quizSet[currentNum].c[0]) { 37 li.classList.add('correct'); 38 score++; 39 } else { 40 li.classList.add('wrong'); 41 } 42 43 btn.classList.remove('disabled'); 44 } 45 46 function setQuiz() { 47 isAnswered = false; 48 49 question.textContent = quizSet[currentNum].q; 50 51 while (choices.firstChild) { 52 choices.removeChild(choices.firstChild); 53 } 54 55 const shuffledChoices = shuffle([...quizSet[currentNum].c]); 56 shuffledChoices.forEach(choice => { 57 const li = document.createElement('li'); 58 li.textContent = choice; 59 li.addEventListener('click', () => { 60 checkAnswer(li); 61 }); 62 choices.appendChild(li); 63 }); 64 65 if (currentNum === quizSet.length - 1) { 66 btn.textContent = 'Show Score'; 67 } 68 } 69 70 setQuiz(); 71 72 btn.addEventListener('click', () => { 73 if (btn.classList.contains('disabled')) { 74 return; 75 } 76 btn.classList.add('disabled'); 77 78 if (currentNum === quizSet.length - 1) { 79 // console.log(`Score: ${score} / ${quizSet.length}`); 80 scoreLabel.textContent = `Score: ${score} / ${quizSet.length}`; 81 result.classList.add('show'); 82 } else { 83 currentNum++; 84 setQuiz(); 85 } 86 }); 87 88 function newi(){ 89 document.getElementById("choices").style.display ="none"; 90 } 91 92 setTimeout("newi()", 10000); 93} 94
試したこと
色々関連するサイトを調べたりしました。
補足情報(FW/ツールのバージョンなど)
macbook air 10.14.6
atomのバージョン 1.40.1x64(?)
サイト
JavaScriptで三択クイズを作ろう
上のサイトで作りました。
何かわかる方ご教授お願いします。
回答2件
あなたの回答
tips
プレビュー