JS獲取URL中的參數數據
更新時間:2013年12月05日 14:54:45 作者:
這篇文章主要介紹了JS獲取URL中的參數數據,有需要的朋友可以參考一下
復制代碼 代碼如下:
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.dbjr.com.cn/UserQuery.aspx?id=202
getParam("id")為202