获取URL地址栏中的参数并返回值

2021-06-09 16:04

阅读:427

标签:页面   return   ram   地址栏   作用   history   ati   turn   guid   

* 作用:获取URL地址栏中的参数并返回值
* @param 需要获取URL中的某个参数, String类型
*/
function GetLocationParam(param) {

  // 得到window.location的某个参数
  var ss = (‘‘ + window.location).split(‘?‘);
  if(ss.length > 1) {
    var sss = ss[1].split(‘&‘);
    for(var i = 0; i       var ssss = sss[i].split(‘=‘);
      if(ssss.length > 1 && ssss[0] == param) return ssss[1];
    }
  }
  return ‘‘;
}

GetLocationParam("前页面传过来的url后的参数");//在此处调用

//例:
http://127.0.0.1:8020/mapp1.1/Family_history.html?guid=%20
GetLocationParam("guid");

获取URL地址栏中的参数并返回值

标签:页面   return   ram   地址栏   作用   history   ati   turn   guid   

原文地址:http://www.cnblogs.com/rockyan/p/7298976.html


评论


亲,登录后才可以留言!