JS准确获取URL网址中参数

1、获取整个URL字符串

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

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

[javascript]  view plain  copy
  1. //window.location.protocol设置或获取 URL 的协议部分  
  2. var test = window.location.protocol;  
  3. alert(test);  
  4. //返回弹出:http:  

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

[javascript]  view plain  copy
  1. //window.location.host设置或获取 URL 的主机部分  
  2. var test = window.location.host;  
  3. alert(test);  
  4. //返回弹出:www.zhihuaw.com  

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

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

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

[javascript]  view plain  copy
  1. //window.location.pathname设置或获取 URL 的路径部分(就是文件地址)  
  2. var test = window.location.pathname;  
  3. alert(test);  
  4. //返回弹出:/wap/tmpl/member/member.html  

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

[javascript]  view plain  copy
  1. //window.location.search设置或获取 href 属性中跟在问号后面的部分  
  2. var test = window.location.search;  
  3. alert(test);  
  4. //返回弹出:?token=zhihua_wei  

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

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

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

[javascript]  view plain  copy
  1. //window.location.href设置或获取整个 URL字符串  
  2. var test = window.location.href;  
  3. alert(test);  
  4. //返回弹出:http://www.zhihuaw.com/wap/tmpl/member/member.html?token=zhihua_wei  
2、获取URL中的参数值

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

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

[javascript]  view plain  copy
  1. function getQueryString(name){  
  2.     var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)");  
  3.     var r = window.location.search.substr(1).match(reg);  
  4.     if (r!=nullreturn r[2]; return '';  
  5. }  

② split拆分法

[javascript]  view plain  copy
  1. function GetRequest() {  
  2.     var url = location.search; //获取url中"?"符后的字串  
  3.     var theRequest = new Object();  
  4.     if (url.indexOf("?") != -1) {  
  5.         var str = url.substr(1);  
  6.         strs = str.split("&");  
  7.         for (var i = 0; i < strs.length; i++) {  
  8.             theRequest[strs[i].split("=")[0]] = unescape(strs[i].split("=")[1]);  
  9.         }  
  10.     }  
  11.     return theRequest;  
  12. }  
  13. var Request = new Object();  
  14. Request = GetRequest();  
  15. // var id=Request["id"];   
  16. // var 参数1,参数2,参数3,参数N;  
  17. // 参数1 = Request['参数1'];  
  18. // 参数2 = Request['参数2'];  
  19. // 参数3 = Request['参数3'];  
  20. // 参数N = Request['参数N'];  

③ 单个参数的获取方法

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

猜你喜欢

转载自blog.csdn.net/yanby921005/article/details/79993003
今日推荐