JS获取url参数值的两种方式
文章目录
JS获取url:
window.location.href;
有个url格式如下:
http://localhost/lab/GM-center/src/user_manage/user_info?game=tank&appid=1009
通过正则
1 | function getQueryString(name) { |
通过切串放进数组
1 | function GetRequest() { |
JS获取url:
window.location.href;
有个url格式如下:
http://localhost/lab/GM-center/src/user_manage/user_info?game=tank&appid=1009
1 | function getQueryString(name) { |
1 | function GetRequest() { |