###実現したいこと
answer-button
をクリックした際に、年齢と性別が設定されているなら/question
に画面遷移し、そうでなければ年齢と性別を設定するモーダル画面を表示させるようにしたいです。
###発生している問題
fetchしてきたデータを参照して分岐をかけ、年齢と性別が設定されていない場合にモーダルをターゲットする属性をボタンに追加するという処理を書いてみたのですが、ボタンを一度クリックしただけでは反応せず、二度目のクリックでモーダルが表示されるという状況です。
一度目のクリックでモーダル画面を表示させる良い方法はないでしょうか?
###該当するコード
html
1<a class="btn btn-outline-secondary btn-home" role="button" id="answer-button">質問に回答する</a> 2 3<!-- Modal --> 4<div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true"> 5 <div class="modal-dialog modal-dialog-centered" role="document"> 6 <div class="modal-content"> 7 <div class="modal-header"> 8 <h5 class="modal-title" id="exampleModalCenterTitle">年齢と性別を選択して下さい。</h5> 9 <button type="button" class="close" data-dismiss="modal" aria-label="Close"> 10 <span aria-hidden="true">×</span> 11 </button> 12 </div> 13 <div class="modal-body"> 14 <input type="radio" name="gender" value="male" class="gender-inp"> 15 <label for="inq1">男性</label> 16 <input type="radio" name="gender" value="famale" class="gender-inp"> 17 <label for="inq2">女性</label><br> 18 <label>年齢</label> 19 <select name="age" class="age-inp"> 20 </div> 21 <div class="modal-footer"> 22 <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button> 23 <button type="button" class="btn btn-primary">Save changes</button> 24 </div> 25 </div> 26 </div> 27</div>
JavaScript
1const answerButton = document.getElementById('answer-button'); 2 3answerButton.addEventListener('click', () => { 4 fetch('/user/json').then((response) => { 5 response.json().then((result) => { 6 const { user } = result; 7 if (user.age && user.gender) { 8 window.location.href = '/question'; 9 } else { 10 answerButton.setAttribute('data-toggle', 'modal'); 11 answerButton.setAttribute('data-target', '#exampleModalCenter'); 12 } 13 }); 14 }); 15}); 16
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/28 00:11
2020/08/28 00:34
2020/08/28 04:38