javascript 中带参数跳转页面的方法有三种:window.location.href、window.location.replace 和 window.open,分别用于创建新历史记录、替换当前历史记录和在新窗口或标签页中打开页面。目标页面可通过 window.location.search 获取传递的参数值。
JavaScript 带参数跳转页面
在 JavaScript 中,可以通过以下方式带参数跳转页面:
方法:
1. window.location.href
window.location.href = "newpage.html?param1=value1&param2=value2";
登录后复制
2. window.location.replace
window.location.replace("newpage.html?param1=value1&param2=value2");
登录后复制
区别:
- window.location.href 会创建一个新的历史记录,而 window.location.replace 则会替换当前历史记录。
3. window.open
window.open("newpage.html?param1=value1&param2=value2");
登录后复制
区别:
- window.open 会在一个新窗口或标签页中打开页面。
获取参数值:
在目标页面中,可以使用 window.location.search 获取传递的参数值:
const params = new URLSearchParams(window.location.search); const param1 = params.get("param1"); const param2 = params.get("param2");
登录后复制
以上就是js如何带参数跳转页面跳转的详细内容,更多请关注其它相关文章!
Article Links:https://www.hinyin.com/n/175246.html
Article Source:admin
Article Copyright:除非特别标注,否则均为本站原创文章,转载时请以链接形式注明文章出处。