我正在使用 jQuery Accordion 并参考此处。
单击我的部分(标题)中的项目时,我想以以下格式显示:
我的标签中的第 # -> 项目 # 作为文本(如面包屑)。
我试图搜索它,我得到了使用的线索
var active = $('.selector').accordion('option', 'active');
但我不知道如何使用它。我是 jQuery 的新手。
我的代码如下:
$(function () {
$("#accordion").accordion({
heightStyle: "content"
});
});
</script>
<div id="accordion">
<h3>
Section 1</h3>
<div>
<asp:LinkButton ID="LinkButton1" runat="server">Item 1</asp:LinkButton>
<br /><br />
<asp:LinkButton ID="LinkButton3" runat="server">Item 2</asp:LinkButton>
</div>
<h3>
Section 2</h3>
<div>
<asp:LinkButton ID="LinkButton2" runat="server">Item 3</asp:LinkButton>
<br /><br />
<asp:LinkButton ID="LinkButton4" runat="server">Item 4</asp:LinkButton>
</div>
</div>
<asp:Label runat="server" ID="lbl_selectedValue" ></asp:Label>