智云SRM-LAYUI(夏宝服务器版本)
YL
2021-11-09 b7f96c26dcc60f056a9c64dae5b6d9150a816e80
1
2
3
4
5
6
7
8
9
10
11
//获取参数
function get_UrlVars() {
    var vars = [], hash;
    var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
    for (var i = 0; i < hashes.length; i++) {
        hash = hashes[i].split('=');
        vars.push(hash[0]);
        vars[hash[0]] = hash[1];
    }
    return vars;
}