如果字符串中的值为true,但未获得任何响应,请尝试从querystring请求值,然后更改数据切换选项卡。
$(document).ready(function () {
var found = querySt("viewtodonotestab");
console.Log('found');
if (found == "true") {
activaTab('fourth44');
console.Log(found);
}
});
function querySt(Key) {
var url = window.location.href;
KeysValues = url.split(/[\?&]+/);
for (i = 0; i < KeysValues.length; i++) {
KeyValue = KeysValues[i].split("=");
if (KeyValue[0] == Key) {
return KeyValue[1];
}
}
}
function activaTab(tab) {
$('.tab-pane a[href="#' + tab + '"]').tab('show');
};