jQueryを使わずにクリックした順番を取得し、別要素の同じ番目にクラスを付与したいです。
tab_linkを持っている要素の順番を取得し、その順番と同じpost_linkの要素に「hFind」のクラスを付与させたいです。
HTML
1<section id="top-tabmenu-list-box" class="container"> 2 <input type="radio" name="switch" id="tab-1" checked> 3 <input type="radio" name="switch" id="tab-2"> 4 <input type="radio" name="switch" id="tab-3"> 5 <input type="radio" name="switch" id="tab-4"> 6 <input type="radio" name="switch" id="tab-5"> 7 <div id="top-tabmenu-list"> 8 <ul> 9 <li class="top-tabmenu-item tab_link"><label for="tab-1" ontouchstart=""><span>aaa</span></label></li> 10 <li class="top-tabmenu-item"><label for="tab-2" ontouchstart=""><span>bbb</span></label></li> 11 <li class="top-tabmenu-item"><label for="tab-3" ontouchstart=""><span>ccc</span></label></li> 12 <li class="top-tabmenu-item"><label for="tab-4" ontouchstart=""><span>ddd</span></label></li> 13 <li class="top-tabmenu-item"><label for="tab-5" ontouchstart=""><span>eee</span></label></li> 14 </ul> 15 </div> 16 17 <div class="top-newpost-list-box"> 18 <ul class="post-list"> 19 <li class="post-item"></li> 20 <li class="post-item"></li> 21 <li class="post-item"></li> 22 <li class="post-item"></li> 23 </ul> 24 <ul class="post-list"> 25 <li class="post-item"></li> 26 <li class="post-item"></li> 27 <li class="post-item"></li> 28 <li class="post-item"></li> 29 </ul> 30 <ul class="post-list"> 31 <li class="post-item"></li> 32 <li class="post-item"></li> 33 <li class="post-item"></li> 34 <li class="post-item"></li> 35 </ul> 36 <ul class="post-list"> 37 <li class="post-item"></li> 38 <li class="post-item"></li> 39 <li class="post-item"></li> 40 <li class="post-item"></li> 41 </ul> 42 <ul class="post-list"> 43 <li class="post-item"></li> 44 <li class="post-item"></li> 45 <li class="post-item"></li> 46 <li class="post-item"></li> 47 </ul> 48 </div> 49 </section>
JavaScript
1function tabBar_animation() { 2 var tabBar = document.querySelectorAll('#top-tabmenu-list li'); 3 tabBar.forEach(el => { 4 el.addEventListener('click', () => { 5 tabBar.forEach(el => { 6 el.classList.remove('tab_link'); 7 }); 8 el.classList.add('tab_link'); 9 }); 10 }); 11} 12tabBar_animation(); 13 14function tabBar_height_adding(){ 15 var eventTrigger = document.querySelectorAll('#top-tabmenu-list li');//引き金 16 var contentParent = document.querySelector('.top-newpost-list-box');//高さを与える要素 17 var hGet = document.querySelectorAll('.post-list');//高さ持ってる 18 19 eventTrigger.forEach( el => { 20 el.addEventListener('click', () => { 21 // Javascritでindex()を使う 22 var index = function(wrapper, target) { 23 var nodeList = document.querySelectorAll(wrapper), 24 element = document.querySelector(target); 25 return Array.prototype.indexOf.call(nodeList, element); 26 }; 27 var tabOrder = index('#top-tabmenu-list .top-tabmenu-item', '.tab_link');//クリックされた要素の順番を取得 28 // 番目を指定するjavascript 29 var eq = function(wrapper, index) { 30 var nodeList = document.querySelectorAll(wrapper), 31 length = nodeList.length; 32 if (0 < index && index < length) { 33 return nodeList[index]; 34 } 35 if (0 <= length + index) { 36 return nodeList[length + index]; 37 } 38 return null; 39 }; 40 41 // クリックされた要素の番目と同じ番目の要素を取得 42 var heightOrder = eq('.top-newpost-list-box .post-list', tabOrder); 43 console.log(heightOrder); 44 if(heightOrder.classList.contains('hFind')){ 45 return; 46 } else { 47 for ( var i=0 ; i<hGet.length; i++ ){ 48 hGet[i].classList.remove('hFind'); 49 } 50 heightOrder.classList.add('hFind'); 51 var contentChild = heightOrder.offsetHeight; 52 const addHeight = `height: ${contentChild}px;`; 53 contentParent.setAttribute('style', addHeight); 54 } 55 }); 56 }); 57} 58tabBar_height_adding();
このままでも動くことは動くんですが、indexの第二引数のtargetに「0」が入るとheightOrderの値がundifinedになってしまいます。
参考サイトとして、
https://spyweb.media/2017/11/04/pure-js-jquery-eq-index/
上記のサイトを参考にこのjsは作成しています。
無駄なコード等あるかと思いますが、一旦は挙動できる形まで持っていきたいです。
宜しくお願いします。
回答1件
あなたの回答
tips
プレビュー