成功交付Avant STAMP评估通常涉及到以下角色的人员:
更多STAMP指南
#moreGuides {//width:fit-content;} #moreGuides li a {display:block; padding:10px; text-decoration:none; border:solid 1px #cde;} #moreGuides li a:hover {background: #a8eaff66;} #moreGuides li.current a {background:var(--pink, var(--orange)); color:white;} const currentPath = window.location.pathname; console.log('当前路径:'); console.log(currentPath); const moreGuides = document.querySelector('#moreGuides'); const moreGuideLinks = moreGuides.querySelectorAll('a'); for (let Link of moreGuideLinks ) { console.log(Link.pathname); if (Link.pathname == currentPath) { Link.parentElement.classList.add('current'); } }
更新: