Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我有一个基于 h2s 和一个无序列表的 jquery 手风琴。在列表中,有一个列表项,该列表项有一个带有与之关联的活动类的 href。
如果它有一个活动类,有没有办法让 jquery 手风琴触发正确的面板?
您将需要获取活动类的索引并使用手风琴上的“活动”选项。
function setActive() { var index = $('#myaccordion li').index($('#myaccordion li.activeClass')); $('#myaccordion').accordion("option","active" index); }
有关更多信息,您可以查看此处和此处。希望这可以帮助。