使用JS获取URL中参数的方法

1、获取整个URL字符串

要想获取URL中的参数,首先我们就要获取到整个URL字符串。我们以http://localhost:8080/Charge/homePage.html?costInfoId=1为例

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

var test = window.location.protocol;  
alert(test);  
//返回弹出:http:  

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

var test = window.location.host;  
alert(test);  
//返回弹出:localhost:8080 

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

var test = window.location.port;  
alert(test);  
//返回弹出:8080(如果采用默认的80端口(即使添加了:80),那么返回值并不是默认的80而是空字符)

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

var test = window.location.pathname;  
alert(test);  
//返回弹出:/Charge/homePage.html 

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

var test = window.location.search;  
alert(test);  
//返回弹出:?costInfoId=1

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

var test = window.location.hash;  
alert(test);  
//返回弹出:空字符(因为url中没有)  

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

var test = window.location.href;  
alert(test);  
//返回弹出:http://localhost:8080/Charge/homePage.html?costInfoId=1

2、获取URL中的参数值

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

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

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

② split拆分法

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]] = unescape(strs[i].split("=")[1]);  
        }  
    }  
    return theRequest;  
}  
var Request = new Object();  
Request = GetRequest();  
// var id=Request["id"];   
// var 参数1,参数2,参数3,参数N;  
// 参数1 = Request['参数1'];  
// 参数2 = Request['参数2'];  
// 参数3 = Request['参数3'];  
// 参数N = Request['参数N'];  

③ 单个参数的获取方法

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

 

猜你喜欢

转载自www.cnblogs.com/qing1001/p/9036429.html
今日推荐