Use regular expressions and document. Location. Search to obtain the URL parameter value

Source: Internet
Author: User

To get the parameters of the current page url, you may first think of using window. Location. href or document. Location. href to get results such as http://www.xxx.com /? AA = XX & BB = xx; but what we need is :? AA = XX & BB = xx. In this form, you can use the document. Location. Search attribute.

What if I want to obtain the value of AA after the URL? The common method may be as follows:

    Function  (PARAM ){
VaR URL = Window. Location. tostring ();
URL = URL. Split ( ' ? ' );
If ( Typeof (URL [ 1 ]) = ' String ' ){
URL = URL [ 1 ]. Split ( ' & ' );
For (I = 0 ; I < URL. length; I ++ )
{
S = URL [I]. Split ( " = " );
If (S [ 0 ] = " Param " ) Return S [ 1 ];
}
}
Return Null ;
}

Use document. Location. Search and regular expression to obtain parameters.CodeMore concise:

 Function  Getparameter (sprop)
{
VaR Re = New Regexp (sprop + " = ([^ \ &] *) " , " I " );
VaR A = Re. Exec (document. Location. Search );
If ( = Null )
Return Null ;
Return A [ 1 ];
};

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.