我已经能够找到 JS 来扩展特定的手风琴......
$(document).ready(function () {
location.hash && $(location.hash + '.collapse').collapse('show');
});
或者打开一个特定的标签...
var gotoHashTab = function (customHash) {
var hash = customHash || location.hash;
var hashPieces = hash.split('?'),
activeTab = $('[href=' + hashPieces[0] + ']');
activeTab && activeTab.tab('show');
}
// onready go to the tab requested in the page hash
gotoHashTab();
// when the nav item is selected update the page hash
$('.nav a').on('shown', function (e) {
window.location.hash = e.target.hash;
})
// when a link within a tab is clicked, go to the tab requested
$('.tab-pane a').click(function (event) {
if (event.target.hash) {
gotoHashTab(event.target.hash);
}
});
与看起来像这样的链接或网址一起使用...
http://mysite.com/page#tab_or_accordion_id
我想做的是打开一个特定的标签 ID,然后展开一个特定的手风琴 ID。我想用它在文章中跳转到特定的、分类的(带标签的)常见问题解答。我似乎无法弄清楚如何将它们缝合在一起以使其正常工作。考虑一下我是使用 jQuery 和 Bootstrap 的新手——任何帮助将不胜感激。