js获取url参数中文乱码问题
程序员文章站
2022-04-03 08:26:49
...
function getQueryString(key){
var reg = new RegExp("(^|&)"+key+"=([^&]*)(&|$)");
var result = window.location.search.substr(1).match(reg);
return result?decodeURIComponent(result[2]):null;
}
摘自:https://segmentfault.com/q/1010000003039352
推荐阅读