从URL获取参数
function getURLParam() {
const url = location.search;
const param: any = {};
if (url.indexOf('?') != -1) {
const str = url.substr(1);
const strs = str.split('&');
for(let i = 0; i < strs.length; i ++) {
param[strs[i].split('=')[0]] = decodeURI(strs[i].split('=')[1]);
}
}
return param;
}
文章仅代表个人观点,如有任何疑问或疏漏之处,欢迎随时评论留言。