1、获取整个URL字符串

要想获取URL中的参数,首先我们就要获取到整个URL字符串。我们使用:
“ http://www.zhihuaw.com/wap/tmpl/member/member.html?token=zhihua_wei”
这个URL为例。

① 获取(或设置) URL 的协议部分:window.location.protocol

//window.location.protocol设置或获取 URL 的协议部分
    var test = window.location.protocol;
    alert(test);
    //返回弹出:http:

② 获取(或设置) URL 的主机部分:window.location.host

//window.location.host设置或获取 URL 的主机部分
    var test = window.location.host;
    alert(test);
    //返回弹出:www.zhihuaw.com

③ 获取(或设置) URL 关联的端口号码:window.location.port

//window.location.port设置或获取与 URL 关联的端口号码
    var test = window.location.port;
    alert(test);
    //返回弹出:空字符(如果采用默认的80端口(即使添加了:80),那么返回值并不是默认的80而是空字符)

④ 获取(或设置) URL 的路径部分也就是文件地址:window.location.pathname

//window.location.pathname设置或获取 URL 的路径部分(就是文件地址)
    var test = window.location.pathname;
    alert(test);
    //返回弹出:/wap/tmpl/member/member.html

⑤ 获取(或设置) URL属性中跟在问号后面的部分:window.location.search

//window.location.search设置或获取 href 属性中跟在问号后面的部分
    var test = window.location.search;
    alert(test);
    //返回弹出:?token=zhihua_wei

⑥ 获取(或设置) URL属性中在井号“#”后面的分段:window.location.hash

//window.location.hash设置或获取 href 属性中在井号“#”后面的分段
    var test = window.location.hash;
    alert(test);
    //返回弹出:空字符(因为url中没有)

⑦ 获取(或设置) 整个 URL字符串:window.location.href

//window.location.href设置或获取整个 URL字符串
    var test = window.location.href;
    alert(test);
    //返回弹出:http://www.zhihuaw.com/wap/tmpl/member/member.html?token=zhihua_wei

2、获取URL中的参数值

获取了URL字符串之后就是获取URL字符串中的参数数据信息。下面是几种获取参数的方法:

① 同正则表达式对比获取参数值

获取指定名称的URL中的参数。

function getURLString(name) { 
    var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i"); 
    var r = window.location.search.substr(1).match(reg); 
    if (r != null) return decodeURIComponent(r[2]); 
    return null; 
}

② split拆分法

获取URL中所有的参数,并以对象属性和属性值得形式返回。

function GetRequest() {  
   var url = location.search; //获取url中"?"符后的字串,包含?号本身。
   var theRequest = new Object();  
   if (url.indexOf("?") != -1) {  
      var str = url.substr(1);  
      strs = str.split("&");  
      for(var i = 0; i < strs.length; i ++) {  
         theRequest[strs[i].split("=")[0]]=decodeURIComponent(strs[i].split("=")[1]);  
      }  
   }  
   return theRequest;  
}

③ 单个参数的获取方法

function GetRequest() {
        var url = location.search; //获取url中"?"符后的字串
        if (url.indexOf("?") != -1) {  //判断是否有参数
            var str = url.substr(1);
             //从第一个字符开始 因为第0个是?号 获取所有除问号的所有符串
            strs = str.split("="); 
             //用等号进行分隔 
             //(因为知道只有一个参数 所以直接用等号进分隔 
             //如果有多个参数 要用&号分隔 再用等号进行分隔)
            alert(strs[1]);     
            //直接弹出第一个参数 (如果有多个参数 还要进行循环的)
        }
    }