JavaScript

window.location.href跳转页面时传递参数并且在

2020-04-03  本文已影响0人  西瓜鱼仔

可以直接使用window.location.href进行页面跳转

window.location.href = "./punch/clock_frm.html"

问号传参:

window.location.href = "./punch/clock_frm.html?modFlag=" + modFlag + '&role=' + role;

在新页面接收参数,可以用下面的方法:

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

原文:https://blog.csdn.net/weixin_41014370/article/details/78920811

上一篇 下一篇

猜你喜欢

热点阅读