可以直接使用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
网友评论