美文网首页JavaScript
window.location.href跳转页面时传递参数并且在

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

作者: 西瓜鱼仔 | 来源:发表于2020-04-03 14:10 被阅读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

    相关文章

      网友评论

        本文标题:window.location.href跳转页面时传递参数并且在

        本文链接:https://www.haomeiwen.com/subject/bfphphtx.html