查询:
单击时如何导航到特定 Bootstrap 选项卡在外部链接上,确保所需的选项卡在页面上保持活动状态重新加载?
答案:
要实现此功能,请实现以下 JavaScript 代码:
// Javascript to enable link to tab var hash = location.hash.replace(/^#/, ''); // ^ means starting, meaning only match the first hash if (hash) { $('.nav-tabs a[href="#' + hash + '"]').tab('show'); } // Change hash for page-reload $('.nav-tabs a').on('shown.bs.tab', function (e) { window.location.hash = e.target.hash; })
说明:
以上是如何使用外部链接定位特定的引导选项卡并在重新加载时保留选择?的详细内容。更多信息请关注PHP中文网其他相关文章!