JSP中下拉菜单的跳转不是我所想要的结果!
http://localhost:8080/lx-tax-portal/index.jsp?www.hompy.cn/yfz_1116
我用response.sendRedirect(url);转的时候怎么到下面这个链接了,它总是跳不出去呀,帮帮忙,郁闷着就。
http://localhost:8080/lx-tax-portal/www.hompy.cn/yfz_1116
相关代码片段如下:
<script language="javascript">
function load(form)
{
var url = selectForm.list.options[form.list.selectedIndex].value;
if (url != "")
url="?url="+url;
open(url, "_blank");
<%
String tmp=request.getParameter("url");
if(tmp!=null){response.reset();
//System.out.print(tmp);
pageContext.forward("tmp");
}
%>
//
return false;
}
这里的tmp取值正常。