查詢:
點擊時如何導覽至特定Bootstrap 選項卡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中文網其他相關文章!