Home > Web Front-end > JS Tutorial > body text

How to get the parameters passed by the URL of other pages in js

零到壹度
Release: 2018-03-20 14:24:48
Original
4214 people have browsed it

This article mainly introduces to you the specific steps and related operation skills of how to obtain the parameters passed by the URL of other pages in js. Friends in need can refer to it. I hope it can help everyone.

For example:

<a v-bind:href="&#39;addressEdit.html?addressid=&#39;+list.addressId"> 在addressEdit.html页面 获取 list.addressId
Copy after login

Method one:

function getQueryString(name) {
    var reg = new RegExp(&#39;(^|&)&#39; + name + &#39;=([^&]*)(&|$)&#39;, &#39;i&#39;);
    var r = window.location.search.substr(1).match(reg);
    if (r != null) {
        return unescape(r[2]);
    }
    return null;
}
// 这样调用:
var id = GetQueryString("addressid");
alert(id);
Copy after login

Method two:

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 参数1,参数2,参数3,参数N;
// 参数1 = Request[&#39;参数1&#39;];
Copy after login

Related recommendations:

Passing parameters through URL (parameters are also URLs)

Several ways to obtain URL parameters

The above is the detailed content of How to get the parameters passed by the URL of other pages in js. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template