代码如下:
function getvalue(name) {
var str = window.location.search;
if (str.indexOf(name) != -1) {
var pos_start = str.indexOf(name) + name.length + 1;
var pos_end = str.indexOf("&", pos_start);
if (pos_end == -1) {
return str.substring(pos_start);
}
}
}
var typeValue = getvalue("type");//调用函数,获取地址栏里的参数 type为地址栏里的参数名
//typeValue是地址栏里type的值