Jelly House Acridine
<Head> <MetaCharSet= "UTF-8"> <title></title> <Scripttype= "Text/javascript">window.onload= function() { functiongeturllist (name) {varReg= NewRegExp ("(^|&)" +name+ "= ([^&]*) (&|$)"); varR=Window.location.search.substr (1). Match (REG); if(R!= NULL) returnunescape (r[2]); return NULL; } functionGeturlparam (paraname) {varURL=document.location.toString (); varArrobj=Url.split ("?"); if(Arrobj.length> 1) {varArrpara=arrobj[1].split ("&"); vararr; for(varI= 0; I<arrpara.length; I++) {arr=Arrpara[i].split ("="); if(arr!= NULL &&arr[0] ==paraname) {returnarr[1]; }}return ""; }Else{return ""; }}//Calling MethodsConsole.log (Geturllist ("a")); Console.log (Geturllist ("b")); Console.log (Geturllist ("C")); //Calling MethodsConsole.log (Geturlparam ("a")); Console.log (Geturlparam ("b")); Console.log (Geturlparam ("C")); } </Script></Head><Body></Body>
Sets or gets the file name or path specified by the object.
Alert (Window.location.pathname)
Sets or gets the entire URL as a string.
alert (WINDOW.LOCATION.HREF);
Sets or gets the port number associated with the URL.
Alert (Window.location.port)
Sets or gets the protocol portion of the URL.
Alert (Window.location.protocol)
Sets or gets the segment behind the pound sign "#" in the href attribute.
Alert (Window.location.hash)
Set or get the hostname and port numbers for the location or URL.
Alert (Window.location.host)
Sets or gets the portion of the HREF attribute that follows the question mark.
Alert (Window.location.search)
Turn from:js get URL Pass parameters
JS Get URL Pass parameters