根据查询字符串中的值更改数据切换选项卡

时间:2014-10-13 15:14:26

标签: javascript jquery

如果字符串中的值为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');
    };

0 个答案:

没有答案