美文网首页
获取地址栏参数

获取地址栏参数

作者: 嵩鼠 | 来源:发表于2020-04-14 15:14 被阅读0次

/* 获取地址栏参数 */

(function(global) {

global.location_search = (function(search) {

var pairs = search.slice(1).split('&');

var result = {};

pairs.forEach(function(pair) {

if (pair && pair.indexOf('=') !== -1) {

pair = pair.split('=');

//兼容写法

result[pair[0]] = result[

pair[0].toLocaleLowerCase()

] = decodeURIComponent(pair[1] || '');

}

});

return JSON.parse(JSON.stringify(result));

})(location.search);

}(window));

相关文章

网友评论

      本文标题:获取地址栏参数

      本文链接:https://www.haomeiwen.com/subject/qjhtvhtx.html