SoFunction
Updated on 2025-04-03

Example analysis of JS method to obtain url parameters and main domain name

This article describes the method of JS to obtain url parameters and main domain name. Share it for your reference, as follows:

<script>
alert()
alert()
alert()
alert()
</script>
<script>
function winsx(url) //The parameters passed by the URL{
 var winurl =url?url:(unescape());
 var wlp = ("?")[1];
 var wincs = ("&");
 for(var i=0; i<; i++)
 {
  var tur = wincs[i].split("=");
  eval('this.'+tur[0]+'="'+tur[1]+'";');
 }
}
var ug = new winsx("/aa/?val=11&test=2");
alert()
alert()
</script>

For more information about JavaScript, readers who are interested in reading this site's special topic:Summary of JavaScript search algorithm skills》、《Summary of JavaScript data structure and algorithm techniques》、《JavaScript traversal algorithm and skills summary》、《Summary of json operation skills in JavaScript》、《Summary of JavaScript switching effects and techniques》、《Summary of JavaScript animation special effects and techniques》、《Summary of JavaScript Errors and Debugging Skills"and"Summary of JavaScript mathematical operations usage

I hope this article will be helpful to everyone's JavaScript programming.