在 JavaScript 中访问 GET 参数
可以使用 window.location 对象在 HTML 页面的 JavaScript 中检索 GET 参数。要获取不带问号的 GET 参数,请使用以下代码:
window.location.search.substr(1)
例如,给定 URL:
http://example.com/page.html?returnurl=%2Fadmin
上面的代码将输出:
returnurl=%2Fadmin
函数的替代方法
创建函数检索特定 GET 参数,请使用:
function findGetParameter(parameterName) { var result = null, tmp = []; location.search .substr(1) .split("&") .forEach(function (item) { tmp = item.split("="); if (tmp[0] === parameterName) result = decodeURIComponent(tmp[1]); }); return result; }
使用 findGetParameter('returnurl') 调用函数将返回“/admin。”
Plain For Loop Variation
为了与 IE8 等旧版浏览器兼容,请使用普通的 for循环:
function findGetParameter(parameterName) { var result = null, tmp = []; var items = location.search.substr(1).split("&"); for (var index = 0; index < items.length; index++) { tmp = items[index].split("="); if (tmp[0] === parameterName) result = decodeURIComponent(tmp[1]); } return result; }
以上是如何在 JavaScript 中访问和检索 GET 参数?的详细内容。更多信息请关注PHP中文网其他相关文章!