通过使用window.open(url, "_self")打开页面,可以从URL中获取参数值。具体步骤如下:
以下是一个示例代码:
// 获取URL中的参数值
function getParamValue(param) {
const urlParams = new URLSearchParams(window.location.search);
return urlParams.get(param);
}
// 示例URL:https://www.example.com/?name=John&age=25
const name = getParamValue("name");
const age = getParamValue("age");
console.log("Name:", name); // 输出:Name: John
console.log("Age:", age); // 输出:Age: 25
这种方法适用于通过window.open()打开的页面,可以方便地从URL中获取参数值,并进行相应的处理。
领取专属 10元无门槛券
手把手带您无忧上云