The example in this article describes how to obtain url query parameters in JavaScript. Share it with everyone for your reference. The specific implementation method is as follows:
function getQueryVariable(variable) { var query = window.location.search.substring(1); var vars = query.split("&"); for (var i=0;i<vars.length;i++) { var pair = vars[i].split("="); if(pair[0] == variable){return pair[1];} } return(false); }
How to use:
Example URL:
http://www.example.com/index.php?id=1&image=awesome.jpg
Calling getQueryVariable("id") - would return "1".
Calling getQueryVariable("image") - would return "awesome.jpg".
I hope this article will be helpful to everyone’s JavaScript programming design.