ボタンをクリックするとそのときの時間を取得するプログラムをつくっているんですが、うまく動きません。
エラーは履いてないので、スペルミスのような気がするのですがわからないので教えていただけませんか?
![ここに言語を入力
ここに言語を入力
コード
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> <link rel="stylesheet" href="css/style.css"> <title>TIMER</title> </head> <body> <div class="container"> <p id="timer">00:00:00:00</p> <button id="strat_stop" class="btn btn-lg btn-primary">START</button> </div> <script> //ゼロを追加する var addZero = function(value) { if (value < 10) { value = '0' + value; } return value; } document.getElementById('start_stop').addEventListener('click',function() { var now = new Date(); var seconds = now.getSeconds(); //秒取得 seconds = addZero(seconds); var minutes = now.getMinutes(); //分取得 minutes = addZero(minutes); var hours = now.getHours(); //時取得 hours = addZero(hours); document.getElementById('timer').innerHTML = hours + ':' + minutes + ':' + seconds; }); </script> </body> </html> イメージ説明 ```](6c7d1829c83451bf073ef99cb4f17dd6.png)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/09/12 11:43