window.location.href = "LvItemsManage.htm?a=" + txt1 + "+&b=" + txt2 + "+&c="+txt3+"+&d="+txt4+"+&e="+txt5+"+&f="+index+"+&g="+index2+"";
传递值
另外一个html 应该怎么接收,请给完整代码
用js 接收:
var str=(location.search);
然后再拆分str
另一个html中:
var nowUrl = windows.location.href;
var urlArr = nowUrl.split('?');
var requirement = urlArr[1].split('&');
然后可以通过类似requirement['a']这种方式获取值。
注意转义txt里的'?',以防止错误解析。