The front end Method of getting parameter values in a URL link December 12, 2023 by Ellie Taylor No Comments function getQueryString(name){ var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg); if (r ! = null) return decodeURI(r[2]); return null; }Copy the code