编程语言
首页 > 编程语言> > 在Javascript中获取URL参数不适用于urlencoded’&’

在Javascript中获取URL参数不适用于urlencoded’&’

作者:互联网

我想从Javascript中的URL读取一个get参数.我找到了this

var getUrlParameter = function getUrlParameter(sParam) {
    var sPageURL = decodeURIComponent(window.location.search.substring(1)),
        sURLVariables = sPageURL.split('&'),
        sParameterName,
        i;

    for (i = 0; i < sURLVariables.length; i++) {
        sParameterName = sURLVariables[i].split('=');

        if (sParameterName[0] === sParam) {
            return sParameterName[1] === undefined ? true : sParameterName[1];
        }
    }
};

问题是,我的参数是这样的:

iFZycPLh%Kf27ljF5Hkzp1cEAVR%oUL3$Mce&@XFcdHBb*CRyKkAufgVc32!hUni

我已经做了urlEncode,所以它是这样的:

iFZycPLh%25Kf27ljF5Hkzp1cEAVR%25oUL3%24Mce%26%40XFcdHBb*CRyKkAufgVc32!hUni

但是,如果我调用getUrlParameter()函数,我将得到以下结果:

iFZycPLh%Kf27ljF5Hkzp1cEAVR%oUL3$Mce

有谁知道我该如何解决?

解决方法:

您需要在sParameterName [0]和sParameterName [1]而不是整个search.substring(1))上调用encodeURIComponent.

(即在其组成部分上)

var getUrlParameter = function getUrlParameter(sParam) {
    var sPageURL = window.location.search.substring(1),
        sURLVariables = sPageURL.split('&'),
        sParameterName,
        i;

    for (i = 0; i < sURLVariables.length; i++) {
        sParameterName = sURLVariables[i].split('=');

        var key = decodeURIComponent(sParameterName[0]);
        var value = decodeURIComponent(sParameterName[1]);

        if (key === sParam) {
            return value === undefined ? true : value;
        }
    }
};

zakinster对您链接到的答案的评论中提到了这一点.

标签:javascript,jquery,url-encoding
来源: https://codeday.me/bug/20191027/1941796.html