//鍑洪棶棰樺彲浠ヨ仈绯 764250069 function navfun(objarr,str,time){ objarr.forEach(e=>{ // console.log(e.innerHTML) // console.log(str) const pdarr = e.innerHTML.split(str) if(pdarr.length>1){ // console.log() e.firstElementChild.classList.add('atv') e.classList.add('atv-f') } }) clearInterval(time) } $(()=>{ let time = null let i = 0 time = setInterval(()=>{ i++ // navfun(document.querySelectorAll('#c_static_001-16868958115831 .e_loop-4 .p_loopitem'), // document.querySelector('#c_static_001-1686896813481 .e_h1-2').innerHTML.trim(), // time // ) if( document.querySelectorAll('[data-loop="loop"]')[0] && document.querySelectorAll('[data-title="title"]')[0]){ navfun(document.querySelectorAll('[data-loop="loop"]'), document.querySelector('[data-title="title"]').innerHTML.trim(), time ) } if(i>99){ clearInterval(time) } },20) })