Home  >  Article  >  Web Front-end  >  JS gets parameter data in URL_javascript skills

JS gets parameter data in URL_javascript skills

WBOY
WBOYOriginal
2016-05-16 17:10:391005browse

复制代码 代码如下:

function getParam(paramName) {
    paramValue = "";
    isFound = false;
    if (this.location.search.indexOf("?") == 0 && this.location.search.indexOf("=") > 1) {
        arrSource = unescape(this.location.search).substring(1, this.location.search.length).split("&");
        i = 0;
        while (i < arrSource.length && !isFound) {
            if (arrSource[i].indexOf("=") > 0) {
                if (arrSource[i].split("=")[0].toLowerCase() == paramName.toLowerCase()) {
                    paramValue = arrSource[i].split("=")[1];
                    isFound = true;
                }
            }
            i ;
        }
    }
    return paramValue;
}

如:http://www.jb51.net/UserQuery.aspx?id=202
getParam("id")为202

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn