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

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;
}

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wdzppg.html