gogogo
管理员
管理员
  • UID25
  • 粉丝0
  • 关注0
  • 发帖数1465
阅读:233回复:2

使用JS准确获取URL网址中参数的几种方法

楼主#
更多 发布于:2025-06-19 16:15
需要从URL中获取所传递的参数。如果使用后台语言我们都会有很多中方法来获取,但是网站的中的所有数据都是通过AJAX进行传递的,所以需要使用JS进行获取参数,然后传递给后台。在网上查到了多种方式,在这里进行一下总结记录,方便以后学习使用。




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
gogogo
管理员
管理员
  • UID25
  • 粉丝0
  • 关注0
  • 发帖数1465
沙发#
发布于:2025-06-19 16:17
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 '';
    }




let name = getQueryString(name).name

[backcolor=url(&quot]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.split("=")[0]] = unescape(strs.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]);     //直接弹出第一个参数 (如果有多个参数 还要进行循环的)
        }
    }
游客


返回顶部