当前位置: 代码迷 >> Java Web开发 >> window.open传参数在页面获取地址少了参数,该如何解决
  详细解决方案

window.open传参数在页面获取地址少了参数,该如何解决

热度:3603   发布时间:2013-02-25 21:13:02.0
window.open传参数在页面获取地址少了参数
a.js
  var url = "c.jsp&a=1&b=2";
  window.open("b.jsp?url="+url+"&username=3&pswd=4",'',"width=200,heiht=300");
b.jsp
  String url = request.getParameter("url");
  String username = request.getParameter("username");
  String pswd= request.getParameter("pswd");
  在这个里面获取的url地址只有了c.jsp&a=1 后面的那个参数不见了
 望各位大虾帮帮忙。

------解决方案--------------------------------------------------------
你的方法最后跳转的地址为

b.jsp?url=c.jsp&a=1&b=2&username=3&pswd=4

后面的a和b 都认为是b.jsp的参数了,所以需要对url的值进行编码

a.js 改成

JScript code
var url = "c.jsp&a=1&b=2";window.open("b.jsp?url="+encodeURIComponent(url)+"&username=3&pswd=4",'',"width=200,heiht=300");
------解决方案--------------------------------------------------------
探讨

你的方法最后跳转的地址为

b.jsp?url=c.jsp&a=1&b=2&username=3&pswd=4

后面的a和b 都认为是b.jsp的参数了,所以需要对url的值进行编码

a.js 改成

JScript code

var url = "c.jsp&a=1&b=2";
window.open("b.jsp?url……
  相关解决方案