JS gets the HTML back reference code in the URL

Source: Internet
Author: User
Tags split

The method is very simple, that is, using the IndexOf function of JS. Separate and = to be divided, so that we can save the data we want to an array, so that the operation can be convenient, this article only for reference to the needs of friends can refer to.

(function () {
var urltoobject = function (URL) {
var urlobject = {};
if (/?/.test (URL)) {
var urlstring = url.substring (Url.indexof ("?") +1);
var Urlarray = Urlstring.split ("&");
For (Var i=0, len=urlarray.length i<len; i++) {
var urlitem = urlarray[i];
var item = urlitem.split ("=");
Urlobject[item[0]] = item[1];
}
return urlobject;
}
};
var testurl = "Http://www.111cn.net";
var result = Urltoobject (Testurl);
for (var key in result) {
Alert (key + "=" + Result[key]);
}
})();

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.