获取url后的指定参数
Posted 羊羊羊丶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取url后的指定参数相关的知识,希望对你有一定的参考价值。
用法: getParam("v");
function getParam(paramName) {
paramValue = "", isFound = !1;
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) arrSource[i].indexOf("=") > 0 && arrSource[i].split("=")[0].toLowerCase() == paramName.toLowerCase() && (paramValue = arrSource[i].split("=")[1], isFound = !0), i++
}
return paramValue == "" && (paramValue = null), paramValue
}
以上是关于获取url后的指定参数的主要内容,如果未能解决你的问题,请参考以下文章