我有一個form
許多nav-tabs
。當用戶點擊刷新或按F5
時,我可以成功獲取相同的選項卡。以下是我的代碼:執行事件後重新加載相同的選項卡?
// Store the currently selected tab in the hash value
$("ul.nav-tabs > li > a").on("shown.bs.tab", function(e) {
var id = $(e.target).attr("href").substr(1);
window.location.hash = id;
});
// on load of the page: switch to the currently selected tab
var hash = window.location.hash;
$('#nav-tabs-wrapper a[href="' + hash + '"]').tab('show');
現在問題得到同樣的標籤上submit
上的任何其他event
。
$("#New").on("click", function() {
$.ajax({
success: function (result) {
location.reload();
}
});
});
現在,我試圖加載相同的位置,但它不工作。它總是把我帶到第一個標籤。
你能分享html嗎? –
你是否解決了這個問題 – hasan