The method used by javascript to query string parameters. It is a javascript string.

Source: Internet
Author: User

The method used by javascript to query string parameters. It is a javascript string.

This example describes how to query string parameters in javascript. Share it with you for your reference. The specific implementation method is as follows:

Copy codeThe Code is as follows:/* parse the query string and return an object containing all parameters */

Function getQueryStringArgs (){

// Obtain the query string and remove the question mark at the beginning
Var qs = (location. search. length> 0? Location. search. substring (1 ):'');

// The object that saves the data
Args = {};

// Obtain each item
Var items = qs. length? Qs. split ('&'): [],
Item = null,
Name = null,
// Used in the for Loop
I = 0, len = items. length;

// Add each item to The args object one by one
For (I = 0; I <len; I ++ ){
Item = items [I]. split ('= ');
Name = decodeURIComponent (item [0]);
Value = decodeURIComponent (item [1]);

If (name. length ){
Args [name] = value;
}
}
Return args;
}

In this way, you can easily obtain the corresponding parameter values in the URL.

I hope this article will help you design javascript programs.

Related Article

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.