我试图弄清楚如何动态激活jQuery UI Accordion菜单的正确内容部分,具体取决于当前正在查看的页面。我进行了广泛的搜索,似乎其他人在过去曾遇到过这方面的问题,但我还没有找到适合我的解决方案。我知道active
可以设置为打开菜单的某个索引,但我需要动态地执行此操作。
我认为我可以使用activate
方法达到我想要的效果,我似乎无法弄明白。我希望远离设置Cookie,因为通常不会使用后退/前进按钮和通过特定网址直接导航。有人有主意吗?提前谢谢!
以下是我的菜单的简化结构:
<div id="menu">
<div id="sections">
<div class="grouping accordion">
<a id="heading1" href="#">Heading #1</a>
<div class="sub-items">
<a href="/item1">Item #1</a>
<br />
<a href="/item2">Item #2</a>
</div>
</div>
<div class="grouping accordion">
<a id="heading2" href="#">Heading #2</a>
<div class="sub-items">
<a href="/item4">Item #4</a>
<br />
<a href="/item5">Item #6</a>
</div>
</div>
</div>
</div>
这是我的jQuery Accordion init:
$('#sections').accordion({
header: '> .accordion > a',
autoHeight: false,
collapsible: true,
active: false,
animated: 'slide'
});
因此,如果您当前在/item4
页面上,则应扩展标题#2下的组。
修改 我发现了什么似乎是一个非常好的解决方案,并在下面发布了答案,希望这将有助于有类似问题的人!
答案 0 :(得分:0)
要激活特定标签,您需要使用accordion('activate', index)
方法。例如:
$( "#sections" ).accordion('activate', 2);
但是,您需要为每页定义索引键的内容。你甚至可以动态生成它。我可能会创建一个Pages对象:
Pages = {
"heading1" : {
"id": 1,
"is_active": false,
"items": {
"item1": {
"href": "item1",
"name": "Item #1"
},
"item2": {
"href": "item2",
"name": "Item #2"
}
}
},
"heading2" : {
/* etc*/
},
}
有了一些hackish jQuery魔法,你可以遍历你的标题
var active_heading_index = null;
$.each(Pages, function(heading) {
$.each(heading.items, function(item) {
if($(location).attr('href') == item.href) {
heading.is_active = true;
// or
active_heading_index = heading.id
}
});
});
if(active_heading_index) $( "#sections" ).accordion('activate', active_heading_index);
无论如何,我确信有更清洁,更有效的方法。
答案 1 :(得分:0)
在为菜单上的活动标题处理一些CSS时,我偶然发现了一个非常简洁的解决方案。看起来我可能一直在推翻事情!
使用与问题中相同的HTML,这是适用于我的JavaScript:
//accordion menu
$('#sections').accordion({
header: '> .accordion > a',
autoHeight: false,
collapsible: true,
active: '.selected',
animated: 'slide'
});
//add currentPage class to current menu item based on url
var url = window.location.href;
url = url.substr(url.lastIndexOf("/") + 1);
$("#sections").find("a[href='" + url + "']").addClass("currentPage");
//get id of header anchor tag
var headerId = $(".currentPage").parents(".accordion").children("a").attr("id");
//check if headerId is set, if so activate that id
if (headerId) {
$('#sections').accordion('option', 'animated', false);
$('#sections').accordion('activate', $('#' + headerId));
$('#sections').accordion('option', 'animated', 'slide');
}
此解决方案非常简单,它从网址获取当前页面,并将其与手风琴菜单中的每个链接进行比较。如果找到匹配,它会为该链接提供一个currentPage类(这允许我们通过css相应地设置该链接的样式)。然后它查找具有.accordion
类的该链接的父节点,找到第一个子链接(手风琴标题)并获取标题的id。假设已找到标头ID,我们可以使用activate
方法扩展正确的部分。
答案 2 :(得分:0)
如果您为每个页面单击(标准非Ajaxy方式)返回服务器,则服务器可以将“选定”类添加到正确的节点。所以你会在客户端找到这样的东西(我只是编写基本代码,跳过大部分标签)。
<ul id="menu">
<li>
<ul>
<li>
</li>
<li class="selected">
<a href="">Menu 102</a>
</li>
<ul>
</li>
<li>
...
</li>
<ul>
然后只需找到适当的索引即可获得手风琴的activate
属性。
$(document).ready(function() {
var index = $("li.selected").parents("li").last().index();
$("#menu").accordion({
active: index,
collapsible: true
});
});
parents("li").last()
jQuery返回最顶层的元素。这仅适用于只有一个子元素具有“已选定”类的情况,这应该适用于您的菜单。
答案 3 :(得分:0)
我使用此代码完成了它:
var newsNum = parseInt(window.location.hash.slice(1));
$(document).ready(function(){
$("#menu").accordion('activate', newsNum );
});
该网址看起来像example.com/index.html#1