js获取location.href的参数实例代码

Sophia ·
更新时间:2024-11-13
· 928 次阅读

window.location.search.substr(1); //substr(1) 是去掉参数里最开头的?号。
代码如下:
function getQuery(para){
var reg = new RegExp("(^|&)"+para +"=([^&]*)(&|$)");
var r = window.location.search.substr(1).match(reg);
if(r!=null){
return unescape(r[2]);
}
return null;
}



location.href 参数 location href js

需要 登录 后方可回复, 如果你还没有账号请 注册新账号