質問失礼いたします。javascriptで数当てゲームを作成中にエラーが出てきましたが解決できませんでした。1回目のボタンを押すと正常に動きますが、2回目ではthis.numberの値はundefinedになり、
3回目のボタンからエラーがでます。
この原因と対処法をご教授いただけると幸いです。
エラーコードをググってみたのですが、解決には至りませんでした。
html
1<!DOCTYPE html> 2<html lang="ja"> 3<head> 4 <meta charset="UTF-8"> 5 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 7 <link rel="stylesheet" href="css/style.css"> 8 <title>Document</title> 9</head> 10<body> 11 12 <div id="container"> 13 14 <h1>1~100の間の数字を当ててください!</h1> 15 16 <input type="number" id="input"> 17 <button id="btn">解答する</button> 18 19 <p class="result"></p> 20 </div> 21 22 23 24 25 <script src="main.js"></script> 26</body> 27</html>
scss
1 2#container{ 3 width: 50%; 4 margin: 0 auto; 5} 6 7h1{ 8 font-size: 24px; 9 margin-bottom: 50px; 10} 11 12#btn{ 13 width: 100px; 14 text-align: center; 15 padding: 5px 10px; 16 display: block; 17} 18 19.result{ 20 margin-top: 50px; 21}
js
1 2document.addEventListener('DOMContentLoaded', function(){ 3 const wN = new WinNumber(); 4}); 5 6 7 8class WinNumber{ 9 constructor(){ 10 this.randomNumber = Math.floor(Math.random() * 101); 11 this.btn = document.querySelector('#btn'); 12 this.number = document.querySelector('#input'); 13 this.result = document.querySelector('.result'); 14 this.accu = 0; 15 this.btn.addEventListener('click',this._checkNumber.bind(this)); 16 } 17 18 _checkNumber(){ 19 this.number = this.number.value; 20 this.accu += 1; 21 if(this.number == false){ 22 this.number = 0; 23 } 24 if(this.number < this.randomNumber){ 25 this.result.innerHTML = `${this.accu}回目 ${this.number}は小さいです`; 26 }else{ 27 this.result.innerHTML = `${this.accu}回目 ${this.number}は大きいです`; 28 } 29 } 30}
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2022/01/04 08:30