js获取url传递参数

Posted 果冻栋吖

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js获取url传递参数相关的知识,希望对你有一定的参考价值。

果冻栋吖

<head>
    <meta charset="UTF-8">
    <title></title>
    <script type="text/javascript">
        window.onload = function() {

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

            function GetUrlParam(paraName) {    
                var url = document.location.toString();    
                var arrObj = url.split("?");
                if(arrObj.length > 1) {      
                    var arrPara = arrObj[1].split("&");      
                    var arr; 
                    for(var i = 0; i < arrPara.length; i++) {        
                        arr = arrPara[i].split("=");     
                        if(arr != null && arr[0] == paraName) {          
                            return arr[1];        
                        }      
                    }      
                    return "";    
                }    
                else {      
                    return "";    
                }  
            }
            // 调用方法
            console.log(GetURLlist("a"));
            console.log(GetURLlist("b"));
            console.log(GetURLlist("c"));
            // 调用方法
            console.log(GetUrlParam("a"));
            console.log(GetUrlParam("b"));
            console.log(GetUrlParam("c"));
        }
    </script>
</head>

<body>
</body>

设置或获取对象指定的文件名或路径。

alert(window.location.pathname)

设置或获取整个 URL 为字符串。

alert(window.location.href);

设置或获取与 URL 关联的端口号码。

alert(window.location.port)

设置或获取 URL 的协议部分。

alert(window.location.protocol)

设置或获取 href 属性中在井号“#”后面的分段。

alert(window.location.hash)

设置或获取 location 或 URL 的 hostname 和 port 号码。

alert(window.location.host)

设置或获取 href 属性中跟在问号后面的部分。

alert(window.location.search)

转自:js获取url传递参数

 

以上是关于js获取url传递参数的主要内容,如果未能解决你的问题,请参考以下文章

JS获取URL的参数

js获取url传递参数,js获取url?号后面的参数

js获取url参数并传递到其他页面

js获取url传递参数,js获取url?号后面的参数

js获取url传递参数,js获取url?号后面的参数

js获取url传递参数,js获取url?号后面的参数