跳转到内容

查询或者添加网址参数

JavaScript
function GetQueryString(name) {
  var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)");
  var r = window.location.search.substr(1).match(reg);
  if (r != null) return unescape(r[2]);
  return null;
}
b = GetQueryString("shareName");
if (b == null) {
  url = window.location.host;
  a = "//" + url + "?username=zzjtnb&proxyAccount=";
  window.location.href = a;
}