//获取deviceList1.html页面跳转的url

大城市里の小女人 提交于 2019-12-28 11:12:07

//获取deviceList1.html页面跳转的url
var url = location.search;
console.log(url)
//获取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就是我们需要的参数;
localStorage.setItem(“deviceId”, theRequest.deviceId);
}

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!