当前页面传参

window.location.href="realNameAuthenticationResult.html?type="+1 + "&name="+"zhangchenxao";

下个页面接受参数

 var url = location.search //获取url中"?"符后的字串 ('?modFlag=business&role=1')
 var theRequest = new Object()
 if (url.indexOf('?') != -1) {
 var str = url.substr(1) //substr()方法返回从参数值开始到结束的字符串;
 var strs = str.split('&')
 for (var i = 0; i < strs.length; i++) {
    theRequest[strs[i].split('=')[0]] = strs[i].split('=')[1]
 }
 console.log(theRequest) //此时的theRequest就是我们需要的参数;
 console.log(theRequest.type)
 }

JS   location.href传参及接受参数

 

 

相关文章:

  • 2021-06-18
  • 2021-11-28
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-05-23
  • 2021-10-01
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-05
相关资源
相似解决方案