1.针对不同类型跳转不同的action方法 除了使用JS以外 还可以 使用参数获得参数例如method=....不同值来跳转像不同的方法
例子:分国别 (method="showCountryList") 分地区(method="showAreaList")
后台 String method = request.getParameter("method");
request.setAttribute("method", method);
if (method != null && method.equals("showCountryList")) {
return showCountryList(map, form, request, response);//分国别
} else if (method != null && method.equals("showAreaList")) {
return showAreaList(map, form, request, response);//分地区
}
2.Jsp........记得使用IFram嵌套
<iframe width="100%" height="800" class="share_self" frameborder="0" scrolling="no" src="/tyreportAction.do?method=lookReportInfo&bid=${record.bid } "></iframe>
总结:思维要活跃些 往往一个问题有很多种解决方法的