Home > Article > Web Front-end > How to get the parameters passed by the URL of other pages in js
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="'addressEdit.html?addressid='+list.addressId"> 在addressEdit.html页面 获取 list.addressId
Method one:
function getQueryString(name) { var reg = new RegExp('(^|&)' + name + '=([^&]*)(&|$)', 'i'); var r = window.location.search.substr(1).match(reg); if (r != null) { return unescape(r[2]); } return null; } // 这样调用: var id = GetQueryString("addressid"); alert(id);
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['参数1'];
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!