js获取地址栏参数方式

functiongetRequest() {

  varurl = window.location.search; //获取url中"?"符后的字串

  vartheRequest = newObject();

  if(url.indexOf("?") != -1) {

    varstr = url.substr(1);

    strs = str.split("&");

    for(vari = 0; i < strs.length; i ++) {


      theRequest[strs[i].split("=")[0]]=decodeURI(strs[i].split("=")[1]);


    }

  }

  returntheRequest;

}

varid= getRequest().id;

你可能感兴趣的:(js获取地址栏参数方式)