前端在当前页面URL后面添加参数

let url =+'?campusId=2&manager'
  在网上找个方法是:window.location.href,这个可以获取网站上的url完整路径,
  window.location.href = url不可行,参数会循环重复,页面会一直刷新,下面有两种方法,第二个亲测有效,第一个还没时间测试,先记录一下
  // 方法1:向当前url添加参数,没有历史记录
// window.history.replaceState({
// 	path: url_p
// }, '', url_p);
// 方法2
window.history.pushState(null,null,url)

你可能感兴趣的:(工作中遇到的问题,前端,javascript,html)