jQueryを使って時刻を表すプログラムを書いているのですが、スタートボタン、ーボタン、+ボタンを押すと恐らく初回のみ直前の処理が実行されているのではないかと思います。これらに共通するコードはスタートボタンの処理のstartClock()なので(+ボタンの処理にはstartClock()をそのまま使い、−ボタンの処理にはstartClock()のコードをコピペして若干変えています。)そこが間違っているのだと思いますが、原因がわかりません。
説明が難しいので、もし情報が足りなければご連絡いただければ幸いです。
js let intervalId; let count = 0; let weeks = 1; let days = 1; function startClock(){ //+ボタンを押せるようにする処理 if(days > 1 && weeks >= 1){ $("#minusTime").prop("disabled", false); } //プラスカウント中の処理 if(count === 24){ $("#clock").html("午前 0 時"); count = 1; if(days === 7){//週と日を変更する処理 weeks ++; days = 1; }else{ days ++; }//ここまで }else if(count > 12){ $("#clock").html(`午後 ${count} 時`); count++; }else if(count === 12){ $("#clock").html(" 12 時"); count++; }else if(count < 10){ $("#clock").html(`午前 ${count} 時`); count++; }else if(count <= 12){ $("#clock").html(`午前 ${count} 時`); count++; } $("#weeks_days").html(`${weeks} 週 ${days} 日`); } function startInterval(){ intervalId = setInterval(startClock, 700); $("#start").prop("disabled", true); $("#stop").prop("disabled", false); $("#reset").prop("disabled", true); } function stopInterval(){ clearInterval(intervalId); $("#start").prop("disabled", false); $("#stop").prop("disabled", true); $("#reset").prop("disabled", false); } function resetInterval(){ count = 0; weeks = 1; days = 1; $("#clock").html("現在時刻"); $("#weeks_days").html("0週00日"); $("#start").prop("disabled", false); $("#stop").prop("disabled", true); $("#reset").prop("disabled", true); } function plusTime(){ startClock(); } function minusTime(){ //マイナスカウント中の処理 if(count === 0){ $("#clock").html("午前 0 時"); count = 24; if(days === 1 && weeks === 1){//-ボタンを押せないようにする処理 $("#minusTime").prop("disabled", true);//ここまで }else if(days === 1){ weeks --; days = 7; }else{ days --; } }else if(count > 12){ $("#clock").html(`午後 ${count} 時`); count--; }else if(count === 12){ $("#clock").html(" 12 時"); count--; }else if(count < 10){ $("#clock").html(`午前 ${count} 時`); count--; }else if(count <= 12){ $("#clock").html(`午前 ${count} 時`); count--; } $("#weeks_days").html(`${weeks} 週 ${days} 日`); } $(function(){ $("#start").prop("disabled", false); $("#stop").prop("disabled", true); $("#reset").prop("disabled", true); $("#start").click(startInterval); $("#stop").click(stopInterval); $("#reset").click(resetInterval); $("#plusTime").click(plusTime); $("#minusTime").click(minusTime); });
html <!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>Time Counter</title> <link rel="stylesheet" href="./css/style.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script type="text/javascript" src="JS/script.js"></script> </head> <body> <h1 id="clock">現在時刻</h1> <h2 id="weeks_days">0週00日</h2> <button id="start">スタート</button> <button id="stop">ストップ</button> <button id="reset">リセット</button> <div class="skip"> <button id="minusTime">−</button> <p>スキップ</p> <button id="plusTime">+</button> </div> </body> </html>
回答1件
あなたの回答
tips
プレビュー