タブの実装を行っているのですが、インデックス番号がうまく取れません。
console.log(index)を見ると、0、1、2と3つ取れてしまいます。for文の中にfor文を書いているからだと思うのですが、
このように、for文の中にfor文を書く場合、2回目のfor文(for (let t = 0; t < tabContents.length; t++))には、
最初のループの影響を与えないようにする方法とかってあるのでしょうか?
HTML
1 <ul> 2 <li class="tab active">タブリスト</li> 3 <li class="tab">タブリスト2</li> 4 <li class="tab">タブリスト3</li> 5 </ul> 6 <div> 7 <div class="tab-content active">コンテンツ1</div> 8 <div class="tab-content">コンテンツ2</div> 9 <div class="tab-content">コンテンツ3</div> 10 </div>
CSS
1 body { 2 margin: 0; 3 padding: 0; 4 } 5 6 ul { 7 list-style-type: none; 8 padding: 0; 9 display: flex; 10 margin: 0; 11 width: 100%; 12 background: red; 13 } 14 15 ul li { 16 background: black; 17 width: 33.3%; 18 text-align: center; 19 color: #ffffff; 20 padding-top: 15px; 21 padding-bottom: 15px; 22 cursor: pointer; 23 } 24 25 ul li.active { 26 background: red; 27 } 28 29 .tab-content { 30 display: none; 31 } 32 33 .tab-content.active { 34 display: block; 35 }
JavaScript
1 var tab = document.getElementsByClassName("tab"); 2 var tabContents = document.getElementsByClassName("tab-content"); 3 4 function tabMenu() { 5 for (i = 0; i < tab.length; i++) { 6 tab[i].addEventListener("click", function () { 7 tab[0].classList.remove("active"); 8 tab[1].classList.remove("active"); 9 tab[2].classList.remove("active"); 10 this.classList.add("active"); 11 for (let t = 0; t < tabContents.length; t++) { 12 tabContents[0].classList.remove("active"); 13 let tabArray = Array.prototype.slice.call(tabContents); 14 let index = tabArray.indexOf(tabArray[t]); 15 console.log(index) 16 tabContents[0].classList.remove("active"); 17 tabContents[1].classList.remove("active"); 18 tabContents[2].classList.remove("active"); 19 tabContents[index].classList.add("active"); 20 } 21 }); 22 }; 23 }; 24 tabMenu();
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/16 13:27
2020/02/16 13:41
2020/02/16 14:15 編集
2020/02/16 14:22
2020/02/16 14:30 編集
2020/02/16 14:45
2020/02/16 14:52
2020/02/16 15:09
2020/02/16 15:16
2020/02/16 15:19
2020/02/16 15:25