码迷,mamicode.com
首页 > Web开发 > 详细

js获取url的参数和值的N种有效方法

时间:2017-09-02 11:25:15      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:turn   arch   方法   col   continue   ati   win   arc   function   

js获取url的参数和值的N种有效方法

function getParameterByName(name)  
{  
  name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");  
  var regexS = "[\\?&]" + name + "=([^&#]*)";  
  var regex = new RegExp(regexS);  
  var results = regex.exec(window.location.search);  
  if(results == null)  
    return "";  
  else  
    return decodeURIComponent(results[1].replace(/\+/g, " "));  
}  

 

function getParameterByName(name) {  
    var match = RegExp(‘[?&]‘ + name + ‘=([^&]*)‘)  
                    .exec(window.location.search);  
    return match && decodeURIComponent(match[1].replace(/\+/g, ‘ ‘));  
} 

 

var qs = (function(a) {  
    if (a == "") return {};  
    var b = {};  
    for (var i = 0; i < a.length; ++i)  
    {  
        var p=a[i].split(‘=‘);  
        if (p.length != 2) continue;  
        b[p[0]] = decodeURIComponent(p[1].replace(/\+/g, " "));  
    }  
    return b;  
})(window.location.search.substr(1).split(‘&‘));  
$.urlParam = function(name){  
    var results = new RegExp(‘[\\?&]‘ + name + ‘=([^&#]*)‘).exec(window.location.href);  
    if (!results)  
    {   
        return 0;   
    }  
    return results[1] || 0;  
}  

 

js获取url的参数和值的N种有效方法

标签:turn   arch   方法   col   continue   ati   win   arc   function   

原文地址:http://www.cnblogs.com/hewasdrunk/p/7465900.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!